Click or drag to resize

VogelFulcherLawEvaluateMultiple Method

Evaluates the fit function for multiple rows of independent variables and stores the transformed results in FV.

Namespace: Altaxo.Calc.FitFunctions.Materials
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
public void EvaluateMultiple(
	IROMatrix<double> independent,
	IReadOnlyList<double> P,
	IReadOnlyList<bool>? independentVariableChoice,
	IVector<double> FV
)

Parameters

independent  IROMatrixDouble
Matrix of independent variable values (rows x columns), expected single-column.
P  IReadOnlyListDouble
Parameter list where P[0]=y0, P[1]=B and P[2]=T0.
independentVariableChoice  IReadOnlyListBoolean
Not used; retained for compatibility.
FV  IVectorDouble
Vector that receives the transformed function values for each row.
See Also