General Curve Constructor
Definition
Namespace: Numerics.NET.Curves
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
Overload List
General | Constructs a new GeneralCurve from a function of one variable delegate. |
General | Constructs a new GeneralCurve from a function of one variable delegate with the specified derivative. |
General | Constructs a new GeneralCurve from a function of one variable delegate with the specified derivative. |
GeneralCurve(Func<Double, Double>)
Constructs a new GeneralCurve from a
function of one variable delegate.
public GeneralCurve(
Func<double, double> valueFunction
)
Parameters
GeneralCurve(Func<Double, Double>, Func<Double, Double>)
Constructs a new GeneralCurve from a
function of one variable delegate with the
specified derivative.
public GeneralCurve(
Func<double, double> valueFunction,
Func<double, double> derivativeFunction
)
Parameters
GeneralCurve(Func<Double, Double>, Func<Double, Double>, Func<Double, Double>)
Constructs a new GeneralCurve from a
function of one variable delegate with the
specified derivative.
public GeneralCurve(
Func<double, double> valueFunction,
Func<double, double> derivativeFunction,
Func<double, double> integralFunction
)
Parameters
- valueFunction Func<Double, Double>
- A delegate that represents a function of one variable delegate that calculates the value of the function.
- derivativeFunction Func<Double, Double>
- A delegate that represents a function of one variable delegate that calculates the derivative of the function.
- integralFunction Func<Double, Double>
- A delegate that represents a function of one variable delegate that calculates the integral of the function.