MATLAB: How to display 0.0001 as it is, not 1.000e-4

display format

"format short" does not work even though it is supposed to display number with the format of fixed-point notation with 4 decimal digits. Anyone has solution? Thanks!
For example:
>> format short
>> 0.0001
ans =
1.0000e-004

Best Answer

format g
format long g