what is 1.0e+003* in Matlab? what does * signify?

561 views (last 30 days)
hi all, when i am calculating eigenvalue of 5 by 5 matrix that time i am getting 1.0e+003*, 1.050, 0.0050,0,0,0 as result. what is 1.0e+003* in Matlab? what does * signify? please clarify. Thanks in advance

Accepted Answer

Walter Roberson
Walter Roberson on 7 Dec 2012
You may wish to give the command
format short g
or
format long g
  2 Comments
madhan ravi
madhan ravi on 14 Oct 2018
Answer accepted by madhan ravi since the OP didn’t

Sign in to comment.

More Answers (3)

nyanphyo aung
nyanphyo aung on 31 May 2016
When you have y = Xe-3 that's a shorter way of saying y = X * 10^-3. Since multiplication distributes and the e operator only looks for the next number by default, yes, 1e-3 * X = X * 1e-3 = X * 10^-3. Likewise for addition.

Lalit Patil
Lalit Patil on 7 Dec 2012
1.0e+003 = 1000
Try in command window.. And no need to worry about this result..

Edwin Macharia
Edwin Macharia on 17 Jul 2018
It actually means 1.0 x 10 ^(+0.003).

Categories

Find more on Startup and Shutdown in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!