Altaxo. |
[Missing <summary> documentation for "N:Altaxo.Science.Spectroscopy.Normalization"]
| Class | Description | |
|---|---|---|
| NormalizationArea | Executes area normalization: y' = (y - min) / mean, in which min and mean are the minimum and the mean values of the array. | |
| NormalizationAreaSerializationSurrogate0 | XML serialization surrogate for NormalizationArea. | |
| NormalizationMax | Executes max normalization : y' = y/max, in which max is the maximum of the values of the array. | |
| NormalizationMaxSerializationSurrogate0 | 2023-11-20 V0 | |
| NormalizationMinMax | Executes min-max normalization : y' = (y-min)/(max-min), in which min and max are the minimal and maximal values of the array. | |
| NormalizationMinMaxSerializationSurrogate0 | XML serialization surrogate for NormalizationMinMax. | |
| NormalizationMinMaxInRange | 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. | |
| NormalizationMinMaxInRangeSerializationSurrogate0 | XML serialization surrogate for NormalizationMinMaxInRange. | |
| NormalizationNone | Represents a no-op normalization that returns the original spectrum data unchanged. | |
| NormalizationNoneSerializationSurrogate0 | XML serialization surrogate for NormalizationNone. | |
| NormalizationStandardNormalVariate | 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. | |
| NormalizationStandardNormalVariateSerializationSurrogate0 | XML serialization surrogate for NormalizationStandardNormalVariate. | |
| NormalizationVector | Executes vector normalization : y' = (y)/(norm), in which norm is the L2 norm of the array. | |
| NormalizationVectorSerializationSurrogate0 | XML serialization surrogate for NormalizationVector. |
| Interface | Description | |
|---|---|---|
| INormalization | Interface for spectrum normalization methods. |