File tree 2 files changed +6
-1
lines changed
2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -344,7 +344,9 @@ The following methods are available:
344
344
:meth: `~Window.sum `, Sum of values
345
345
:meth: `~Window.mean `, Mean of values
346
346
347
- The weights used in the window are specified by the ``win_type `` keyword. The list of recognized types are:
347
+ The weights used in the window are specified by the ``win_type `` keyword.
348
+ The list of recognized types are the `scipy.signal window functions
349
+ <https://docs.scipy.org/doc/scipy/reference/signal.html#window-functions> `__:
348
350
349
351
- ``boxcar ``
350
352
- ``triang ``
Original file line number Diff line number Diff line change @@ -503,6 +503,9 @@ class Window(_Window):
503
503
* ``general_gaussian`` (needs power, width)
504
504
* ``slepian`` (needs width).
505
505
506
+ If ``win_type=None`` all points are evenly weighted. To learn more about
507
+ different window types see `scipy.signal window functions
508
+ <https://docs.scipy.org/doc/scipy/reference/signal.html#window-functions>`__.
506
509
"""
507
510
508
511
def validate (self ):
You can’t perform that action at this time.
0 commit comments