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.3572.0 (4.8.3572.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.

The SmoothnessSpecification type exposes the following members.

Extension Methods
 NameDescription
Public Extension MethodIsT Determines whether the enumeration value is equal to the specified value.
(Defined by EnumerationExtensions)
Public Extension MethodWithClearedFlagT Returns the enum value with the specified flag cleared.
(Defined by EnumerationExtensions)
Public Extension MethodWithFlagT Returns the enum value with the specified flag set or cleared, depending on the value argument.
(Defined by EnumerationExtensions)
Public Extension MethodWithSetFlagT Returns the enum value with the specified flag set.
(Defined by EnumerationExtensions)
Top
See Also