Filter löschen
Filter löschen

How to display result in matlab without this format 1.0253e+04?

4 Ansichten (letzte 30 Tage)
Eliza
Eliza am 19 Nov. 2017
Kommentiert: Stephen23 am 19 Nov. 2017
I wanna display the result as real number

Antworten (2)

Star Strider
Star Strider am 19 Nov. 2017
Consult the documentation on the format (link) function.
  2 Kommentare
Eliza
Eliza am 19 Nov. 2017
I already used them here is the result format long >> ans
ans =
1.025280000000000e+04
Star Strider
Star Strider am 19 Nov. 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.

Melden Sie sich an, um zu kommentieren.


Image Analyst
Image Analyst am 19 Nov. 2017
Bearbeitet: Image Analyst am 19 Nov. 2017
Try issuing this command
format longg;
  4 Kommentare
Eliza
Eliza am 19 Nov. 2017
does this value mean -2.95397040162016 *10^-12?

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu File Operations finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by