Click or drag to resize

AnalysisFunctionsThreeParameterExponentialFtnEvaluate Method (DoubleVector, Double)

Evaluates the three parameter exponential function for the given parameter values at the given point.

Namespace:  CenterSpace.NMath.Core
Assembly:  NMath (in NMath.dll) Version: 7.3
Syntax
public override double Evaluate(
	DoubleVector parameters,
	double x
)

Parameters

parameters
Type: CenterSpace.NMath.CoreDoubleVector
The parameter values.
x
Type: SystemDouble
The point to evaluate the function at.

Return Value

Type: Double
The function value for the given parameter values at the the given point.
Remarks
y =  p0 * exp(p1*x) + p2
See Also