Click or drag to resize

VogelFulcherLawRateEvaluate(IROMatrixDouble, IReadOnlyListDouble, IVectorDouble, IReadOnlyListBoolean) Method

Evaluates the Vogel-Fulcher law for multiple rows of independent variables and writes results to FV.

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

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.
FV  IVectorDouble
Vector that receives the function values for each row.
dependentVariableChoice  IReadOnlyListBoolean
Not used; retained for compatibility.

Implements

IFitFunctionEvaluate(IROMatrixDouble, IReadOnlyListDouble, IVectorDouble, IReadOnlyListBoolean)
See Also