Converting to scientific notation in matlab

조회 수: 1,327 (최근 30일)
Arokia Bharat
Arokia Bharat 2022년 6월 20일
편집: Arokia Bharat 2022년 6월 20일
Hi Team,
Could anyone let me know how I can represent the below number
5000000
as 5*(10^6) or 5e^6
in matlab?
The reason is that everytime I have to count the number of zeros, I was wondering if there was an easier way.

채택된 답변

John D'Errico
John D'Errico 2022년 6월 20일
We are not a "team". We are just a number of people who act as complete volunteers, individually.
You cannot "represent" it that way. A number is just a number. In fact, it is stored in a binary form internally. So you cannot tell MATLAB to store it in some other form, perhaps as scientitfic notation.
You CAN make a copy of the number, stored in a variable as a text string. For example,
A = 500000
A = 500000
Now create a string version of the number.
B = sprintf('%10.f',A)
B = ' 500000'
So B is now a character string. Or you could have done this:
C = num2str(A)
C = '500000'
Or, if you want an explicitly scientific notation form...
D = sprintf('%10e',A)
D = '5.000000e+05'
Honestly, I don't think any of these ways are any easier to deal with for whatever are your purposes. But whatever floats your boat.
  댓글 수: 1
Arokia Bharat
Arokia Bharat 2022년 6월 20일
편집: Arokia Bharat 2022년 6월 20일
Thank you so much !
this is exactly what I was looking for, although I understand its a string.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 MATLAB에 대해 자세히 알아보기

태그

제품


릴리스

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by