Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我做了一个回归树,但 Matlab 显示的数字有 6 个有效数字。树非常密集,我不需要这么高的精度,这使得它很难阅读。例如,如何将其更改为 3 个数字?
您可以使用vpa
vpa
例如
vpa([114.234 0.0013452],3)= [ 114.0, 0.00135]
我认为您需要以下内容
在打印您可能使用的东西时
a=2.335444444444 sprintf ('%.2f',a) % I want to print 2 significant digits of a only
输出
ans = 2.34
尝试将格式更改为您喜欢的格式 ( help format)
help format
您可能对以下内容感兴趣:
format bank
或者
format short