Click or drag to resize

SSProbBase Class

This class detrends a spectrum. This is done by fitting a smoothing spline through the spectrum. Then the spectral data that lies significantly above the spline are excluded from the spline. The process is repeated until the resulting curve changes no more.
Inheritance Hierarchy

Namespace: Altaxo.Science.Spectroscopy.BaselineEstimation
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public abstract class SSProbBase : IImmutable, 
	IEquatable<SSProbBase>

The SSProbBase type exposes the following members.

Constructors
 NameDescription
Protected methodSSProbBaseInitializes a new instance of the SSProbBase class
Top
Properties
 NameDescription
Public propertyInterpolationFunctionOptions 
Public propertyRelativeProbabilityThreshold 
Public propertySmoothnessSpecifiedBy Determines how the smoothness of the spline is specified, together with SmoothnessValue.
Public propertySmoothnessValue Determines the smoothness of the spline. This value has different meaning depending on the value of SmoothnessSpecifiedBy.
Top
Methods
 NameDescription
Public methodExecute(Double, Double, Int32) 
Public methodExecute(ReadOnlySpanDouble, ReadOnlySpanDouble, SpanDouble) Executes the baseline estimation algorithm with the provided spectrum.
Public methodExport 
Protected methodFinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
Protected methodStatic memberGetMeanDeviationFromZero 
Protected methodStatic memberGetSpline Gets the smoothing spline (options) for which the smoothing amount is set to the value given in the options.
Public methodGetTypeGets the Type of the current instance.
(Inherited from Object)
Protected methodMemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
Protected methodStatic memberProbabilityThatXIsNoise Approximation for the probability that the value x belongs to the noise level. Attention: x has to be positive (this is not tested!). This function is an approximation for Erfc(x/(sigma*Sqrt(2)).
Public methodToString
(Overrides ObjectToString)
Top
Remarks
Reference: developed by D. Lellinger (currently, no paper is available).
See Also