Click or drag to resize

LevMarAdapterEvaluateFitValues(Double, Double, 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 EvaluateFitValues(
	double[] parameter,
	double[] outputValues,
	bool calculateUnusedDependentVariablesAlso
)

Parameters

parameter  Double
The parameter used to calculate the values.
outputValues  Double
You must provide an array to hold the calculated values. Size of the array must be at least NumberOfData.
calculateUnusedDependentVariablesAlso  Boolean
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