Ok I am just trying to display a matrix properly that has small numbers like 8.00e-5 but when i enter it in as a matrix i get .00001 instead of the correct number... any help?

2 views (last 30 days)
x = [8.00E-05 8.00E-04 2.00E-03 3.50E-03 4.00E-03 4.75E-03]
x =
0.0001 0.0008 0.0020 0.0035 0.0040 0.0047

Accepted Answer

dpb
dpb on 6 Feb 2016
Edited: dpb on 7 Feb 2016
>> format shorte
>> x
x =
8.0000e-05 8.0000e-04 2.0000e-03 3.5000e-03 4.0000e-03 4.7500e-03
>>
doc format % for details, more options

More Answers (0)

Community Treasure Hunt

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

Start Hunting!