General Function Basis Constructor
Definition
Namespace: Numerics.NET.Curves
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
Overload List
General | Constructs a new GeneralFunctionBasis from an array of function of one variable delegates. |
General | Constructs a new GeneralFunctionBasis with derivatives from two arrays of function of one variable delegates. |
GeneralFunctionBasis(Func<Double, Double>[])
Constructs a new GeneralFunctionBasis
from an array of function of one variable
delegates.
public GeneralFunctionBasis(
params Func<double, double>[] basis
)
Parameters
Exceptions
Argument | basis is null. |
GeneralFunctionBasis(Func<Double, Double>[], Func<Double, Double>[])
Constructs a new GeneralFunctionBasis
with derivatives from two arrays of
function of one variable delegates.
public GeneralFunctionBasis(
Func<double, double>[] basis,
Func<double, double>[] derivatives
)
Parameters
Exceptions
Argument | basis is null. -or- basis is null. |