General Function Basis Constructor
Definition
Namespace: Extreme.Mathematics.Curves
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
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. |