Click or drag to resize

DoubleParameterizedFunctionalEvaluate(DoubleVector, DoubleMatrix, 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,
	DoubleMatrix X,
	ref DoubleVector y
)

Parameters

parameters  DoubleVector
The parameter values.
X  DoubleMatrix
The points to evaluate the function at.
y  DoubleVector
On input a vector with the same length as the number of rows in X. On output contains the function values y[i] at the points X.Row(i).
Exceptions
ExceptionCondition
InvalidArgumentExceptionThrown if the input matrix X does not have the correct number of columns, or if the length of the input vector y is not equal to the number of orws in X.
See Also