GeneralCurve Constructor

Definition

Namespace: Extreme.Mathematics.Curves
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

GeneralCurve(Func<Double, Double>) Constructs a new GeneralCurve from a function of one variable delegate.
GeneralCurve(Func<Double, Double>, Func<Double, Double>) Constructs a new GeneralCurve from a function of one variable delegate with the specified derivative.
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.

GeneralCurve(Func<Double, Double>)

Constructs a new GeneralCurve from a function of one variable delegate.
C#
public GeneralCurve(
	Func<double, double> valueFunction
)

Parameters

valueFunction  Func<Double, Double>
A delegate that represents a function of one variable delegate that calculates the value of the function.

GeneralCurve(Func<Double, Double>, Func<Double, Double>)

Constructs a new GeneralCurve from a function of one variable delegate with the specified derivative.
C#
public GeneralCurve(
	Func<double, double> valueFunction,
	Func<double, double> derivativeFunction
)

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.

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.
C#
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.

See Also