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

采纳的回答

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