MATLAB: Show all decimal places

decimal numbersMATLAB

I am using matlab 2016b. I would like to see all decimal places of the numbers I store. For example, the input is:
x = 1.000001
then matlab returns:
x =
1.0000
When substracting 1, matlab is showing the rest by writing
1.0000e-6
So how can I change this, so matlab displays all decimal places that are stored?

Best Answer

doc format. Read about format.
format long
should show what you want.