Click or drag to resize

SmoothnessSpecification Enumeration

Specifies how the smoothness of the spline is interpreted.

Namespace: Altaxo.Calc.Interpolation
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
public enum SmoothnessSpecification
Members
Member nameValueDescription
Direct0 The smoothness value is used as-is, without modification.
ByNumberOfFeatures1 The smoothness value designates the number of features; i.e. it also depends on the number of points. For instance, if one has 4000 points in the spectrum and NumberOfFeatures = 10, then the number of points in one period is 4000 / 10 = 400.
ByNumberOfPoints2 The smoothness value designates the number of points in a feature span. If the spectrum is a sine signal with this period, the spline is expected to smooth the sine signal down to an amplitude of 1/e of the original amplitude.
ByXSpan3 The smoothness value designates the x-span of a feature. If the spectrum is a sine signal with this period, the spline is expected to smooth the sine signal down to an amplitude of 1/e of the original amplitude.
See Also