Click or drag to resize

DoubleParameterizedFunctionEvaluate(DoubleVector, DoubleVector, DoubleVector) Method

Evaluates the parameterized function for the given parameter values at the given set of points.

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

Parameters

parameters  DoubleVector
The parameter values.
x  DoubleVector
The points to evaluate the function at.
y  DoubleVector
On input a vector with the same length as x. On output contains the function values y[i] at the points x[i].
Exceptions
ExceptionCondition
InvalidArgumentExceptionThrown if the input vectors x and y do not have the same length.
See Also