MATLAB: Long digit scaled fixed point

long digit scaled fixed pointMATLAB

i want to see very long digit scaled fixed point
Example: i have a number: 8.123 e-15. And after that. e-16 become to 0. And i want see more. Anyone can tell me how to fix this? . Many thank.

Best Answer

I ma not certain what problem you are seeing.
The format function may be what you want.
For example:
format long e
n = 8.123e-15
n = n/100
produces:
n =
8.123000000000000e-15
n =
8.123000000000000e-17