We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67b1189 commit 4150d1dCopy full SHA for 4150d1d
plasma/utils/processing.py
@@ -35,7 +35,7 @@ def resample_signal(t,sig,tmin,tmax,dt,precision_str='float32'):
35
# f = UnivariateSpline(t,sig[:,i],s=0,k=1,ext=0)
36
# sig_interp[:,i] = f(tt)
37
if(np.any(np.isnan(sig_interp))):
38
- print("signals contains nan")
+ print("signal contains nan")
39
if(np.any(t[1:] - t[:-1] <= 0)):
40
print("non increasing")
41
idx = np.where(t[1:] - t[:-1] <= 0)[0][0]
0 commit comments