SmoothnessSpecification Enumeration |
Specifies how the smoothness of the spline is interpreted.
Namespace: Altaxo.Calc.InterpolationAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntaxpublic enum SmoothnessSpecification
Members| Member name | Value | Description |
|---|
| Direct | 0 |
The smoothness value is used as-is, without modification.
|
| ByNumberOfFeatures | 1 |
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.
|
| ByNumberOfPoints | 2 |
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.
|
| ByXSpan | 3 |
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