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
Jan 2011년 7월 19일

1 개 추천

Or:
v = 2710.16113977021;
sprintf('%.16g', v);
Note the dot instead of the comma.

태그

질문:

2011년 7월 19일

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by