Uses of Class
peakml.math.Signal

Packages that use Signal
peakml   
peakml.math   
 

Uses of Signal in peakml
 

Methods in peakml that return Signal
 Signal Spectrum.getSignal()
           
 Signal MassChromatogram.getSignal()
           
 Signal IPeakSet.getSignal()
           
abstract  Signal IPeak.getSignal()
          Calculates the signal for this IPeak object.
 Signal Centroid.getSignal()
           
 Signal BackgroundIon.getSignal()
           
 

Uses of Signal in peakml.math
 

Methods in peakml.math that return Signal
 Signal Signal.lowessSmooth()
          Applies a Lowess smoother to the signal and returns the resulting new signal.
 Signal Signal.savitzkyGolaySmooth()
          Applies a Savitzky-Golay smoother to the signal and returns the resulting new signal.
 Signal Signal.savitzkyGolaySmooth(SavitzkyGolayFilter.Points points)
          Applies a Savitzky-Golay smoother to the signal and returns the resulting new signal.
 Signal Signal.smooth(Filter filter)
          Applies the given filter to the y-values and returns the resulting new signal.
 

Methods in peakml.math with parameters of type Signal
 double Signal.compareTo(Signal other)
          Compares the given signal to this signal.
 double[] Signal.pearsonsCorrelation(Signal other)
          Calculates the Pearson's correlation between this and the given signal.
 double Signal.spearmanCorrelation(Signal other)
          Calculates the Spearman correlation between this and the given signal.
 

Constructors in peakml.math with parameters of type Signal
Signal(Signal signal)
          Copy-constructor, which copies the contents of the given signal to this signal.