How to display result in matlab without this format 1.0253e+04?
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I wanna display the result as real number
0 comentarios
Respuestas (2)
Star Strider
el 19 de Nov. de 2017
2 comentarios
Star Strider
el 19 de Nov. de 2017
Try this:
format short g
x = 1.025280000000000e+04
y = -2.95397040162016e-12
x =
10253
y =
-2.954e-12
At some point, format defaults to exponential notation, regardless.
Image Analyst
el 19 de Nov. de 2017
Editada: Image Analyst
el 19 de Nov. de 2017
Try issuing this command
format longg;
Ver también
Categorías
Más información sobre Whos en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!