You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In most of the examples theres a time definition like t = linspace(0, dur, dur * srate);
when it should be t = linspace(0, dur, dur * srate, endpoint=False);
or t = linspace(0, dur, dur * srate + 1);
to verify this it should be the case that 1./t[1] == srate
Hope this helps
JuanS
The text was updated successfully, but these errors were encountered:
In most of the examples theres a time definition like
t = linspace(0, dur, dur * srate);
when it should be
t = linspace(0, dur, dur * srate, endpoint=False);
or
t = linspace(0, dur, dur * srate + 1);
to verify this it should be the case that 1./t[1] == srate
Hope this helps
JuanS
The text was updated successfully, but these errors were encountered: