matlab GUI怎样控制输出结果的精度?
2.set(...,‘string’,a)显示2位 set(...,‘string’,num2str(a))显示4位。为什么? 展开
1. set(handles.xxx,'String',num2str(x,'%6.3f')); %xxx处为该编辑框tag,x为某数值变量,
'%6.3f'中的.3表示小数点后位数。具体可参见fprintf函数的帮助。
2. num2str的帮助中有说明当变量为浮点数时将被转为4位精度的值。如下
“str = num2str(A) converts array A into a string representation str. Converted floating-point values have a maximum of four digits of precision, and an exponent if required. For integer values, num2str returns the exact string representation of the value.”
matlab控制运算精度用的是digits和vpa这两个函数。
digits用于规定运算精度,比如:
digits(20);
这个语句就规定了运算精度是20位有效数字。但并不是规定了就可以使用,因为实际编程中,我们可能有些运算需要控制精度,而有些不需要控制。vpa就用于解决这个问题,凡是用需要控制精度的,我们都对运算表达式使用vpa函数。例如:
digits(5);
a=vpa(sqrt(2));
这样a的值就是1.4142,而不是准确的1.4142135623730950488016887242097。