matlab提高矩阵的精度
Posted
技术标签:
【中文标题】matlab提高矩阵的精度【英文标题】:Matlab Increase The Precision Of Matrix 【发布时间】:2015-05-05 20:58:19 【问题描述】:我有一个这样的矩阵
steps = [k' a(1:n)' b(1:n)' x' y' e(1:n)'];
其中 k、a、b、x、y 和 e 是我想要显示此矩阵时的向量,其行的值不会以尾数和指数形式显示,如
有什么帮助吗?
【问题讨论】:
Convert string to high precision number in matlab 和 How to store more than 4 decimal places in an array in MATLAB 的可能重复项。 检查这个:***.com/questions/2311520/… 【参考方案1】:只需使用format
命令:
format longG
其他选项是:long
、short
、hex
、shortEng
、compact
、longEng
。检查下表:
检查help page。
【讨论】:
以上是关于matlab提高矩阵的精度的主要内容,如果未能解决你的问题,请参考以下文章