Exponent values
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Hello, I have an exponent value ,2710,16113977021 but in matlab i am seeing it as 2.7102e+003
how can i see the actual value 2710,16113977021
thanks
0 Commenti
Risposte (2)
Jan
il 19 Lug 2011
Or:
v = 2710.16113977021;
sprintf('%.16g', v);
Note the dot instead of the comma.
0 Commenti
Vedere anche
Categorie
Scopri di più su Data Type Conversion 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!