How to remove exponential notation?

16 Ansichten (letzte 30 Tage)
Daniele Morello
Daniele Morello am 3 Okt. 2015
Kommentiert: Star Strider am 3 Okt. 2015
hi everyone. How can i remove exponential notation? but before that i need to convert to e+03 notation and then remove it
examples
if my number is 1.6755e+05, i need that become 167.55e+03, but i want simply 167.55
if it's 7.6538e+04, i need that become 76.538e+03, but i want simply 76.538
and so on....

Akzeptierte Antwort

Star Strider
Star Strider am 3 Okt. 2015
I actually wrote a function to do some of that just for the fun of it yesterday.
engstr = @(x) [x*10.^(-3*floor(log10(abs(x))/3)) 3*floor(log10(abs(x))/3)];
z = 1.6755e+05;
Result = engstr(z)
Result =
167.5500 3.0000
The ‘engstr’ function produces a (1x2) vector, the first element is the engineering notation mantissa, and the second is the exponent. Just use the first element to get the result you want.
  2 Kommentare
Daniele Morello
Daniele Morello am 3 Okt. 2015
ohhhh thank u thank u thank u :D
Star Strider
Star Strider am 3 Okt. 2015
My pleasure!
I wrote it so I could use it with text objects.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Data Type Conversion 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!

Translated by