MATLAB: Can’t I save very small numbers in a vector

real number

Hello!
My code is getting points like 5e-9 and i am putting these points on a vector. However after i run it i get a vector full of zeros.
Is there anyway to keep the real numbers in the vector.
Thank you

Best Answer

a=1e-9
fprintf('%.10f',a)