Rbf Options Constructor
Definition
Namespace: Numerics.NET.Curves
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.1.0
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.1.0
Overload List
| Rbf | Initializes a new instance of the RbfOptions class with default settings. |
| Rbf | Initializes a new instance of the RbfOptions class with the specified parameters. |
RbfOptions
Initializes a new instance of the RbfOptions class with default settings.
public RbfOptions()Remarks
The default settings use a Multiquadric(Double) kernel with shape parameter 1.0 and no regularization.
RbfOptions(RadialBasisFunction, Double)
Initializes a new instance of the RbfOptions class with the specified parameters.
public RbfOptions(
RadialBasisFunction kernel,
double regularization = 0
)Parameters
- kernel RadialBasisFunction
- The RBF kernel to use.
- regularization Double (Optional)
- The regularization parameter λ ≥ 0. Default is 0 for pure interpolation.
Exceptions
| Argument | kernel is null. |
| Argument | regularization is negative. |