Click or drag to resize

NonlinearModelOfFitEnsembleEvaluateModelValues(IReadOnlyListDouble, VectorDouble, Boolean) Method

Calculates the fitting values.

Namespace: Altaxo.Calc.Regression.Nonlinear
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public void EvaluateModelValues(
	IReadOnlyList<double> parameters,
	Vector<double> outputValues,
	bool calculateUnusedDependentVariablesAlso = false
)

Parameters

parameters  IReadOnlyListDouble
The parameter used to calculate the values.
outputValues  VectorDouble
You must provide an array to hold the calculated values. Size of the array must be at least [!:NumberOfObservations].
calculateUnusedDependentVariablesAlso  Boolean  (Optional)
If true, the unused dependent variables are also calculated (and plotted).
Remarks
The values of the fit elements are stored in the order from element_0 to element_n. If there is more than one used dependent variable per fit element, the output values are stored in interleaved order.
See Also