This is documentation for an old release of SciPy (version 0.10.0). Read this page in the documentation of the latest stable release (version 1.15.1).
Compute the analytic signal.
The transformation is done along the last axis by default.
Parameters : | x : array_like
N : int, optional
axis : int, optional
|
---|---|
Returns : | xa : ndarray
|
Notes
The analytic signal x_a(t) of x(t) is:
x_a = F^{-1}(F(x) 2U) = x + i y
where F is the Fourier transform, U the unit step function, and y the Hilbert transform of x. [R56]
axis argument is new in scipy 0.8.0.
References
[R56] | (1, 2) Wikipedia, “Analytic signal”. http://en.wikipedia.org/wiki/Analytic_signal |