Effacer les filtres
Effacer les filtres

get rid of e notation

6 vues (au cours des 30 derniers jours)
Naveen Francis
Naveen Francis le 12 Juil 2011
how do i get rid of the e notation in a variable? eg 4.321e+003, i just need it as 4321. its stopping me from plotting a graph.

Réponse acceptée

Walter Roberson
Walter Roberson le 12 Juil 2011
Sounds to me as if you have accidentally created a variable named "plot".
In the mean time, use round() on your data and see if you get a plot out. My guess is that you will not.
  7 commentaires
Walter Roberson
Walter Roberson le 12 Juil 2011
What is "a" ? If it is an array, then a(z) would be attempting to subscript "a" by the values in "z".
If "a" is an array and you are expecting that "z" will work out as integral, then you might be experiencing floating point roundoff limitations; if so then a(round(z)) should work (unless some z rounds to zero.)
Naveen Francis
Naveen Francis le 12 Juil 2011
got it.:)

Connectez-vous pour commenter.

Plus de réponses (2)

Friedrich
Friedrich le 12 Juil 2011
Hi,
have a look at the format function:
So this should work
format long
  1 commentaire
Naveen Francis
Naveen Francis le 12 Juil 2011
i tried that but it doesnt seem to work!

Connectez-vous pour commenter.


Paulo Silva
Paulo Silva le 12 Juil 2011
No it's not stopping you unless the variable is a string instead of a number, please provide more details.
  3 commentaires
Naveen Francis
Naveen Francis le 12 Juil 2011
i guess the 'e' in the number must be interpreted as a character by matlab which is why its giving me an error while plotting.
Paulo Silva
Paulo Silva le 12 Juil 2011
something doesn't seem right, please provide the code and a sample of the data

Connectez-vous pour commenter.

Catégories

En savoir plus sur Line Plots dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by