mpl.mlab.detrend_none()¶
-
mpl.mlab.detrend_none(x, axis=None)[source]¶ Return x: no detrending.
Call signature:
detrend_none(x, axis=None) *x*: any object An object containing the data *axis*: integer This parameter is ignored. It is included for compatibility with detrend_mean
See also
denone()- This function is the same as as
denone()except for the default axis, which has no effect.
detrend_linear()detrend_mean()anddetrend_linear()are other detrend algorithms.detrend()detrend()is a wrapper around all the detrend algorithms.