pyacs.gts.lib.filters.wiener module

Wiener filter for Gts based on scipy.signal.wiener.

https://docs.scipy.org/doc/scipy-0.14.0/reference/generated/scipy.signal.wiener.html

pyacs.gts.lib.filters.wiener.wiener(self, in_place=False, verbose=True, my_size=15, noise=None)[source]

Return a filtered time series using scipy.signal.wiener.

Parameters:
  • in_place (bool, optional) – If True, replace the current time series; otherwise return a new Gts.

  • verbose (bool, optional) – Verbose mode.

  • my_size (int, optional) – Size of the Wiener filter window.

  • noise (float, optional) – Noise estimate for the filter.

Returns:

Filtered time series.

Return type:

Gts

See also

scipy.signal.wiener