Click or drag to resize

MultipleCurveFitFunctionEvaluate(DoubleVector, DoubleVector, DoubleVector) Method

Evaluates the function for the given set of parameters at the given point.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public override void Evaluate(
	DoubleVector beta,
	DoubleVector x,
	ref DoubleVector y
)

Parameters

beta  DoubleVector
The parameter values.
x  DoubleVector
The point at which to evaluate.
y  DoubleVector
On input a vector of the appropriate size. On output the function value at the point. If on input y is null or the incorrect size it will be replaced with a new vector of the correct dimension.
Exceptions
ExceptionCondition
InvalidArgumentExceptionThrown if the input vector of parameters beta has length different than the NumberOfParameters property. Also thrown if the input vector x has length different than the XDimension property.
See Also