xboa
__init__.py
Go to the documentation of this file.
1 """
2 \namespace xboa::algorithms::smoothing
3 
4 Algorithms to clean up noisy data by averaging over nearby points.
5 
6 Implemented within this module:
7 \li \link xboa::algorithms::smoothing::_gaussian_smoothing::GaussianSmoothing GaussianSmoothing \endlink:
8  Smooth by summing nearby points, using a Gaussian function to weight the
9  relative contributions.
10 \li \link xboa::algorithms::smoothing::_fit_smoothing::FitSmoothing FitSmoothing \endlink:
11  Smooth by making a piecewise fit to nearby points.
12 """
13 
14 
15 from _gaussian_smoothing import GaussianSmoothing
16 from _fit_smoothing import FitSmoothing
17 
18 __all__ = ["GaussianSmoothing", "FitSmoothing"]