RbfOptions Class

Provides options for radial basis function (RBF) interpolation.

Definition

Namespace: Numerics.NET.Curves
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.1.0
C#
public class RbfOptions
Inheritance
Object  →  RbfOptions

Remarks

This class encapsulates the parameters needed to configure RBF interpolation, including the kernel type and regularization.

Constructors

RbfOptions() Initializes a new instance of the RbfOptions class with default settings.
RbfOptions(RadialBasisFunction, Double) Initializes a new instance of the RbfOptions class with the specified parameters.

Properties

Kernel Gets the RBF kernel to use for interpolation.
Regularization Gets the regularization parameter λ.

Methods

EqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
FinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
GetHashCodeServes as the default hash function.
(Inherited from Object)
GetTypeGets the Type of the current instance.
(Inherited from Object)
MemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
ToStringReturns a string that represents the current object.
(Inherited from Object)
WithKernel Creates a copy of this RbfOptions with a different kernel.
WithRegularization Creates a copy of this RbfOptions with a different regularization parameter.

See Also