Exponent values
1 回表示 (過去 30 日間)
古いコメントを表示
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
0 件のコメント
回答 (2 件)
Jan
2011 年 7 月 19 日
Or:
v = 2710.16113977021;
sprintf('%.16g', v);
Note the dot instead of the comma.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Data Type Conversion についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!