我想做的可能相对简单。
如您所见,这个矩阵的显示使得所有项都乘以 1.0e+04。我想禁用此功能并查看“真实”的数字。
该format
命令可以为您解决此问题。从文档:
FORMAT SHORT Scaled fixed point format with 5 digits.
FORMAT LONG Scaled fixed point format with 15 digits for double
and 7 digits for single.
这些是默认值,您想要的是:
FORMAT SHORTG Best of fixed or floating point format with 5
digits.
FORMAT LONGG Best of fixed or floating point format with 15
digits for double and 7 digits for single.