Click or drag to resize

IFitFunctionEvaluate(IROMatrixDouble, IReadOnlyListDouble, IVectorDouble, IReadOnlyListBoolean) Method

Evaluates the function values at multiple x-points.

Namespace: Altaxo.Calc.Regression.Nonlinear
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
void Evaluate(
	IROMatrix<double> independent,
	IReadOnlyList<double> parameters,
	IVector<double> FV,
	IReadOnlyList<bool>? dependentVariableChoice
)

Parameters

independent  IROMatrixDouble
The independent variables. Every row of that matrix corresponds to one observation. The columns of the matrix represent the different independent variables. Thus, for a usual function of one variable, the number of columns is 1.
parameters  IReadOnlyListDouble
The parameters.
FV  IVectorDouble
On return, contains the function values. Note that if the fit function has multiple dependent variables, those variables will be written in subsequent order to the output vector.
dependentVariableChoice  IReadOnlyListBoolean
Determines which output variables are written to the output vector. See remarks.
Remarks
Concerning dependentVariableChoice: if this parameter is null, all dependent variables the fit function provides, will be included in the output vector FV. If this parameter is not null, only those dependent variables, for which the value is true, are included in the output vector (at least one element of this array must be true).
See Also