MATLAB: 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

matrixsmall exponents

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

Best Answer

>> 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