Polyharmonic |
public class PolyharmonicSpline : IInterpolationFunction, IInterpolationCurve
The PolyharmonicSpline type exposes the following members.
Name | Description | |
---|---|---|
![]() | PolyharmonicSpline | Initializes the spline with a regularization parameter of zero and an derivative order of 2. |
Name | Description | |
---|---|---|
![]() | DerivativeOrder | Derivative order of the spline. Effectively, the L2-norm of this derivative is minimized. |
![]() | NumberOfControlPoints | Number of control points. |
![]() | NumberOfDimensions | Number of dimensions of the control points. |
![]() | RegularizationParameter | Regularization parameter (>=0). If the regularization parameter is zero, interpolation is exact. As it approaches infinity, the resulting spline is reduced to a least squares linear fit (in 2D this is a plane, the bending energy is 0). |
Name | Description | |
---|---|---|
![]() | Construct(IReadOnlyListDouble, IReadOnlyListDouble) | Constructs the interpolation (1 dimensional). The values and the corresponding coordinates of the values are given in separate vectors. |
![]() | Construct(IReadOnlyListDouble, IReadOnlyListDouble) | Constructs the interpolation (any dimension). The values and the corresponding coordinates of the values are given in separate vectors. |
![]() | Construct(IReadOnlyListDouble, IReadOnlyListDouble, IReadOnlyListDouble) | Constructs the interpolation (2 dimensional). The values and the corresponding coordinates of the values are given in separate vectors. |
![]() | Construct(IReadOnlyListDouble, IReadOnlyListDouble, IReadOnlyListDouble, IReadOnlyListDouble) | Constructs the interpolation (3 dimensional). The values and the corresponding coordinates of the values are given in separate vectors. |
![]() | Equals | Determines whether the specified object is equal to the current object. (Inherited from Object) |
![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object) |
![]() | GetBendingEnergy | Gets the bending energy of the interpolation. |
![]() | GetHashCode | Serves as the default hash function. (Inherited from Object) |
![]() | GetInterpolatedValue | Gets the interpolation value of given coordinates x and y. |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object) |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object) |
![]() | ToString | Returns a string that represents the current object. (Inherited from Object) |
Name | Description | |
---|---|---|
![]() ![]() | DefaultDerivativeOrder | Default value of the DerivativeOrder. |
![]() ![]() | DefaultRegularizationParameter | Default value of the RegularizationParameter. |