Go to the documentation of this file.
2 \namespace xboa::algorithms::smoothing
4 Algorithms to clean up noisy data by averaging over nearby points.
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.
15 from _gaussian_smoothing
import GaussianSmoothing
16 from _fit_smoothing
import FitSmoothing
18 __all__ = [
"GaussianSmoothing",
"FitSmoothing"]