Exponent values
显示 更早的评论
Hello, I have an exponent value ,2710,16113977021 but in matlab i am seeing it as 2.7102e+003
how can i see the actual value 2710,16113977021
thanks
回答(2 个)
Jan
2011-7-19
Or:
v = 2710.16113977021;
sprintf('%.16g', v);
Note the dot instead of the comma.
Walter Roberson
2011-7-19
format long g
类别
在 帮助中心 和 File Exchange 中查找有关 Image Arithmetic 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!