This is documentation for an old release of SciPy (version 0.8.). 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. [1]
changes in scipy 0.8.0: new axis argument, new default axis=-1
References
[R36] | Wikipedia, “Analytic signal”. http://en.wikipedia.org/wiki/Analytic_signal |