hi , my result show as following 1.3204e-05 , i need show it as numerical value
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
mohammed elmenshawy
am 11 Aug. 2016
Kommentiert: mohammed elmenshawy
am 11 Aug. 2016
hi , my result show as following 1.3204e-05 , i need show it as numerical value
2 Kommentare
Akzeptierte Antwort
dpb
am 11 Aug. 2016
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 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu String Parsing finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!