Exponent values
조회 수: 2 (최근 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!