Click or drag to resize

LogarithmicFermiDiracTransitionEvaluate(IROMatrixDouble, IReadOnlyListDouble, IVectorDouble, IReadOnlyListBoolean) Method

Evaluates the function for multiple input rows.

Namespace: Altaxo.Calc.FitFunctions.Transitions
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public override void Evaluate(
	IROMatrix<double> independent,
	IReadOnlyList<double> parameters,
	IVector<double> dependent,
	IReadOnlyList<bool>? dependentVariableChoice
)

Parameters

independent  IROMatrixDouble
Matrix of independent variables (rows are observations).
parameters  IReadOnlyListDouble
Parameter list.
dependent  IVectorDouble
Output vector for function values.
dependentVariableChoice  IReadOnlyListBoolean
Optional selection of dependent variables.

Implements

IFitFunctionEvaluate(IROMatrixDouble, IReadOnlyListDouble, IVectorDouble, IReadOnlyListBoolean)
Remarks
Concerning dependentVariableChoice: if this parameter is null, all dependent variables the fit function provides, will be included in the output vector dependent. 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