Click or drag to resize

Altaxo.Science.Spectroscopy.Normalization Namespace

[Missing <summary> documentation for "N:Altaxo.Science.Spectroscopy.Normalization"]

Classes
 ClassDescription
Public classNormalizationArea Executes area normalization: y' = (y - min) / mean, in which min and mean are the minimum and the mean values of the array.
Public classNormalizationAreaSerializationSurrogate0 XML serialization surrogate for NormalizationArea.
Public classNormalizationMax Executes max normalization : y' = y/max, in which max is the maximum of the values of the array.
Public classNormalizationMaxSerializationSurrogate0 2023-11-20 V0
Public classNormalizationMinMax Executes min-max normalization : y' = (y-min)/(max-min), in which min and max are the minimal and maximal values of the array.
Public classNormalizationMinMaxSerializationSurrogate0 XML serialization surrogate for NormalizationMinMax.
Public classNormalizationMinMaxInRange Executes min-max normalization : y' = (y-min)/(max-min), in which min and max are the minimal and maximal values of a user provided range of the array. The range is given by the minimal and maximal x-values.
Public classNormalizationMinMaxInRangeSerializationSurrogate0 XML serialization surrogate for NormalizationMinMaxInRange.
Public classNormalizationNone Represents a no-op normalization that returns the original spectrum data unchanged.
Public classNormalizationNoneSerializationSurrogate0 XML serialization surrogate for NormalizationNone.
Public classNormalizationStandardNormalVariate Executes SNV (standard normal variate) normalization: y' = (y - mean) / std, in which mean and std are the mean value and the standard deviation of the array values.
Public classNormalizationStandardNormalVariateSerializationSurrogate0 XML serialization surrogate for NormalizationStandardNormalVariate.
Public classNormalizationVector Executes vector normalization : y' = (y)/(norm), in which norm is the L2 norm of the array.
Public classNormalizationVectorSerializationSurrogate0 XML serialization surrogate for NormalizationVector.
Interfaces
 InterfaceDescription
Public interfaceINormalization Interface for spectrum normalization methods.