I have a time-series of voltage values recorded in mV every 0.02 ms, stored as a numpy array.
If I do this,
dv_dt = np.gradient(v),
what will the units of dv_dt be? Will it be some multiple of V/s; e.g. mV/s, mV/(0.02 ms), etc?
My understanding is that gradient returns the derivative of the argument passed to it. Is that right?
See this related question.