1234.5 instead of 1.2345e+03

When I read a variable from Excel with value say, 1234.5, Matlab reads in as 1.2345e+03. Instead I want the original format to be preserved (ie., it should stay as it is say, 1234.5 in this example). I have tried "format short g" etc, but these deal with number of digits after the decimal. How can I set the correct format? Thanks, Ganesh

1 commentaire

Jan
Jan le 7 Juil 2012
Internally 1234.5 and 1.2345e+03 are the same numbers. The different notation concerns only the output to the command windows. Therefore it is necessary that you post more relevant details of your problem.

Connectez-vous pour commenter.

Réponses (3)

the cyclist
the cyclist le 6 Juil 2012
Modifié(e) : the cyclist le 6 Juil 2012

4 votes

It depends on the context of where you want this number displayed, but here is one way to show this number the way you want:
x = 1234.5;
sprintf('%5.1f',x)
Ganesh
Ganesh le 6 Juil 2012

0 votes

Thanks for your reply. However, I donot want it displayed on the screen. I am using the variable as an input for a curve-fitting function "fitcurvedemo(xdata, ydata)". This function call does not seem to work if the variable is in scientific/engineering notation.
Thanks again, Ganesh

2 commentaires

the cyclist
the cyclist le 6 Juil 2012
In MATLAB-speak, the "format" generally refers to how the variables are displayed, not to how they are stored internally, or used for computation.
Can you confirm that your variable xdata and ydata are being imported as numeric arrays, and not as text? That could be the problem. Are you able to post a small snippet of self-contained code that exhibits the problem?
Jan
Jan le 7 Juil 2012
@Ganesh: Please do not post comments as answers.

Connectez-vous pour commenter.

Ganesh
Ganesh le 6 Juil 2012

0 votes

Nice idea. As such when the value of the input variable is <1000 (3 or less # digits before the decimal), the function call works. When the value of the variable gets >1000, it is read in the scientific format (like e+003) and this is when the function call does not work well.
Thanks in advance, Ganesh

1 commentaire

Walter Roberson
Walter Roberson le 6 Juil 2012
What evidence do you see that the fitcurvedemo call is not working?
Does the issue only affect the xdata, or only affect the ydata ? For example if you were to divide the ydata by 10 so that it remained less than 1000, does that work?

Connectez-vous pour commenter.

Question posée :

le 6 Juil 2012

Community Treasure Hunt

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

Start Hunting!

Translated by