Parameters: |
- spectra numpy.ndarray (float32 or float64)
One or more spectra per row. If more than one the first spectrum has to
be accessible via spectra[0], the next via spectra[1], ...
- frequencies numpy.ndarray (float32 or float64)
Contains the frequencies for the spectra.
- bandwidth float > 0.0
Determines the width of the smoothing peak. Lower values result in a
broader peak. Defaults to 40.
- count integer, optional
How often the apply the filter. For very noisy spectra it is useful to
apply is more than once. Defaults to 1.
- enforce_no_matrix boolean, optional
An efficient but memory intensive matrix-multiplication algorithm is
used in case more than one spectra is to be smoothed or one spectrum is
to be smoothed more than once if enough memory is available. This flag
disables the matrix algorithm altogether. Defaults to False
- max_memory_usage integer, optional
Set the maximum amount of extra memory in MB for this method. Decides
whether or not the matrix multiplication method is used. Defaults to
512 MB.
- normalize boolean, optional
The Konno-Ohmachi smoothing window is normalized on a logarithmic
scale. Set this parameter to True to normalize it on a normal scale.
Default to False.
|