bundles / scipy 1.17.1 / scipy / fftpack / _pseudo_diffs / ss_diff
function
scipy.fftpack._pseudo_diffs:ss_diff
Signature
def ss_diff ( x , a , b , period = None , _cache = <_thread._local object at 0x0000> ) Summary
Return (a,b)-sinh/sinh pseudo-derivative of a periodic sequence x.
Extended Summary
If x_j and y_j are Fourier coefficients of periodic functions x and y, respectively, then
y_j = sinh(j*a*2*pi/period)/sinh(j*b*2*pi/period) * x_j y_0 = a/b * x_0
Parameters
x: array_likeThe array to take the pseudo-derivative from.
a,bDefines the parameters of the sinh/sinh pseudo-differential operator.
period: float, optionalThe period of the sequence x. Default is
2*pi.
Notes
ss_diff(ss_diff(x,a,b),b,a) == x
Aliases
-
scipy.fftpack.ss_diff