I want to do calculation on timescales of nanoseconds.
>>> N=10
>>> A=10
>>> t = np.linspace(0,A*1e-9,N)
array([0.        , 0.        , 0.        , 0.        , 0.        ,
   0.00000001, 0.00000001, 0.00000001, 0.00000001, 0.00000001])
But the array is being rounded off, how can I keep the desired precision of
A*1e-9/N