필터 지우기
필터 지우기

hi , my result show as following 1.3204e-05 , i need show it as numerical value

조회 수: 2 (최근 30일)
hi , my result show as following 1.3204e-05 , i need show it as numerical value
  댓글 수: 2
Stephen23
Stephen23 2016년 8월 11일
편집: Stephen23 2016년 8월 11일
@mohammed elmenshawy: most likely | 1.3204e-05| is already a numeric value, assuming that the function is not outputting a string or something like that. Read this to know why the output is numeric, regardless of how it is displayed:

댓글을 달려면 로그인하십시오.

채택된 답변

dpb
dpb 2016년 8월 11일
1.3204e-05 is a numerical value, if you want a specific format other than default look at
doc format
to make the change global in the workspace/command window or use fprintf or num2str to display...
>> x=1.3204e-05;
>> num2str(x,'%.10f')
ans =
0.0000132040
>>

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

태그

아직 태그를 입력하지 않았습니다.

Community Treasure Hunt

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

Start Hunting!

Translated by