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 AbstractSmootherSmoothing. m_Smootherthe smoothing scheme.Methods in adams.data.filter that return AbstractSmoother Modifier and Type Method Description AbstractSmootherSmoothing. getSmoother()Returns the current smoothing algorithm.Methods in adams.data.filter with parameters of type AbstractSmoother Modifier and Type Method Description voidSmoothing. 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 classAbstractDatabaseConnectionSmoother<T extends DataContainer>Ancestor for filters that require database access.classAbstractLOWESSBased<T extends DataContainer>Abstract ancestor for LOWESS-based smoothers.classAbstractSavitzkyGolayBased<T extends DataContainer>Abstract ancestor for Savitzky-Golay-based smoothers.classAbstractSlidingWindow<T extends DataContainer>Abstract sliding window smoother.classPassThroughA dummy smoother that just passes the data through.classTimeseriesLOWESSBasedA LOWESS based smoothing algorithm.
For more information on LOWESS see:
WikiPedia.classTimeseriesSavitzkyGolayBasedA 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.classTimeseriesSlidingWindowUses 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 AbstractSmootherAbstractSmoother.SmootherJob. m_Smootherthe smoothing scheme to use.Methods in adams.data.smoothing that return AbstractSmoother Modifier and Type Method Description static AbstractSmootherAbstractSmoother. forCommandLine(String cmdline)Instantiates the smoothing scheme from the given commandline (i.e., classname and optional options).static AbstractSmootherAbstractSmoother. forName(String classname, String[] options)Instantiates the smoothing scheme with the given options.AbstractSmootherAbstractSmoother.SmootherJob. getSmoother()Returns the smoothing scheme being used.AbstractSmootherAbstractSmoother. shallowCopy()Returns a shallow copy of itself, i.e., based on the commandline options.AbstractSmootherAbstractSmoother. 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.
-