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 minimal and the mean values of the array.
Public classNormalizationAreaSerializationSurrogate0 
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 
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 
Public classNormalizationNone 
Public classNormalizationNoneSerializationSurrogate0 
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 
Public classNormalizationVector Executes vector normalization : y' = (y)/(norm), in which norm is the L2 norm of the array.
Public classNormalizationVectorSerializationSurrogate0 
Interfaces
 InterfaceDescription
Public interfaceINormalization Interface to normalization methods.