Uses of Class
adams.data.smoothing.AbstractSmoother
-
Packages that use AbstractSmoother Package Description adams.data.filter adams.data.smoothing -
-
Uses of AbstractSmoother in adams.data.filter
Fields in adams.data.filter declared as AbstractSmoother Modifier and Type Field Description protected AbstractSmoother
Smoothing. m_Smoother
the smoothing scheme.Methods in adams.data.filter that return AbstractSmoother Modifier and Type Method Description AbstractSmoother
Smoothing. getSmoother()
Returns the current smoothing algorithm.Methods in adams.data.filter with parameters of type AbstractSmoother Modifier and Type Method Description void
Smoothing. setSmoother(AbstractSmoother value)
Sets the smoothing algorithm. -
Uses of AbstractSmoother in adams.data.smoothing
Subclasses of AbstractSmoother in adams.data.smoothing Modifier and Type Class Description class
AbstractDatabaseConnectionSmoother<T extends DataContainer>
Ancestor for filters that require database access.class
AbstractLOWESSBased<T extends DataContainer>
Abstract ancestor for LOWESS-based smoothers.class
AbstractSavitzkyGolayBased<T extends DataContainer>
Abstract ancestor for Savitzky-Golay-based smoothers.class
AbstractSlidingWindow<T extends DataContainer>
Abstract sliding window smoother.class
PassThrough
A dummy smoother that just passes the data through.class
TimeseriesLOWESSBased
A LOWESS based smoothing algorithm.
For more information on LOWESS see:
WikiPedia.class
TimeseriesSavitzkyGolayBased
A Savitzky-Golay based smoothing algorithm.
It uses a Savitzky-Golay filter with derivative order 0 and adding of mass-spec data turned on.
For more information on Savitzky-Golay see:
A.class
TimeseriesSlidingWindow
Uses a sliding window for determining the median/average inside the window.Fields in adams.data.smoothing declared as AbstractSmoother Modifier and Type Field Description protected AbstractSmoother
AbstractSmoother.SmootherJob. m_Smoother
the smoothing scheme to use.Methods in adams.data.smoothing that return AbstractSmoother Modifier and Type Method Description static AbstractSmoother
AbstractSmoother. forCommandLine(String cmdline)
Instantiates the smoothing scheme from the given commandline (i.e., classname and optional options).static AbstractSmoother
AbstractSmoother. forName(String classname, String[] options)
Instantiates the smoothing scheme with the given options.AbstractSmoother
AbstractSmoother.SmootherJob. getSmoother()
Returns the smoothing scheme being used.AbstractSmoother
AbstractSmoother. shallowCopy()
Returns a shallow copy of itself, i.e., based on the commandline options.AbstractSmoother
AbstractSmoother. shallowCopy(boolean expand)
Returns a shallow copy of itself, i.e., based on the commandline options.Constructors in adams.data.smoothing with parameters of type AbstractSmoother Constructor Description SmootherJob(AbstractSmoother smoother, T data)
Initializes the job.
-