フィルターのクリア

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:
mohammed elmenshawy
mohammed elmenshawy 2016 年 8 月 11 日
thank's very much

サインインしてコメントする。

採用された回答

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 Center および File ExchangeLogical についてさらに検索

タグ

タグが未入力です。

Community Treasure Hunt

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

Start Hunting!

Translated by