@@ -394,6 +394,7 @@ def demean(x, axis=0):
394
394
.. seealso::
395
395
396
396
:func:`delinear`
397
+
397
398
:func:`denone`
398
399
:func:`delinear` and :func:`denone` are other detrend algorithms.
399
400
@@ -427,6 +428,7 @@ def detrend_mean(x, axis=None):
427
428
for the default *axis*.
428
429
429
430
:func:`detrend_linear`
431
+
430
432
:func:`detrend_none`
431
433
:func:`detrend_linear` and :func:`detrend_none` are other
432
434
detrend algorithms.
@@ -474,6 +476,7 @@ def detrend_none(x, axis=None):
474
476
for the default *axis*, which has no effect.
475
477
476
478
:func:`detrend_mean`
479
+
477
480
:func:`detrend_linear`
478
481
:func:`detrend_mean` and :func:`detrend_linear` are other
479
482
detrend algorithms.
@@ -506,6 +509,7 @@ def detrend_linear(y):
506
509
for the default *axis*.
507
510
508
511
:func:`detrend_mean`
512
+
509
513
:func:`detrend_none`
510
514
:func:`detrend_mean` and :func:`detrend_none` are other
511
515
detrend algorithms.
@@ -878,6 +882,7 @@ def _single_spectrum_helper(x, mode, Fs=None, window=None, pad_to=None,
878
882
879
883
*detrend*: [ 'default' | 'constant' | 'mean' | 'linear' | 'none'] or
880
884
callable
885
+
881
886
The function applied to each segment before fft-ing,
882
887
designed to remove the mean or linear trend. Unlike in
883
888
MATLAB, where the *detrend* parameter is a vector, in
@@ -1244,6 +1249,7 @@ def specgram(x, NFFT=None, Fs=None, detrend=None, window=None,
1244
1249
1245
1250
*mode*: [ 'default' | 'psd' | 'complex' | 'magnitude'
1246
1251
'angle' | 'phase' ]
1252
+
1247
1253
What sort of spectrum to use. Default is 'psd'. which takes the
1248
1254
power spectral density. 'complex' returns the complex-valued
1249
1255
frequency spectrum. 'magnitude' returns the magnitude spectrum.
0 commit comments