hi , my result show as following 1.3204e-05 , i need show it as numerical value
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
mohammed elmenshawy
il 11 Ago 2016
Commentato: mohammed elmenshawy
il 11 Ago 2016
hi , my result show as following 1.3204e-05 , i need show it as numerical value
2 Commenti
Risposta accettata
dpb
il 11 Ago 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 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su String Parsing in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!