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 @@ -346,7 +346,9 @@ The following methods are available:
346
346
:meth: `~Window.sum `, Sum of values
347
347
:meth: `~Window.mean `, Mean of values
348
348
349
- The weights used in the window are specified by the ``win_type `` keyword. The list of recognized types are:
349
+ The weights used in the window are specified by the ``win_type `` keyword.
350
+ The list of recognized types are the `scipy.signal window functions
351
+ <https://docs.scipy.org/doc/scipy/reference/signal.html#window-functions> `__:
350
352
351
353
- ``boxcar ``
352
354
- ``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