LinearFermiDiracTransitionEvaluate(IROMatrixDouble, IReadOnlyListDouble, IVectorDouble, IReadOnlyListBoolean) Method |
Evaluates the function for multiple input rows.
Namespace: Altaxo.Calc.FitFunctions.TransitionsAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntaxpublic override void Evaluate(
IROMatrix<double> independent,
IReadOnlyList<double> P,
IVector<double> FV,
IReadOnlyList<bool>? independentVariableChoice
)
Parameters
- independent IROMatrixDouble
- Matrix of independent variables (rows are observations).
- P IReadOnlyListDouble
- Parameter list.
- FV IVectorDouble
- Output vector for function values.
- independentVariableChoice IReadOnlyListBoolean
[Missing <param name="independentVariableChoice"/> documentation for "M:Altaxo.Calc.FitFunctions.Transitions.LinearFermiDiracTransition.Evaluate(Altaxo.Calc.LinearAlgebra.IROMatrix{System.Double},System.Collections.Generic.IReadOnlyList{System.Double},Altaxo.Calc.LinearAlgebra.IVector{System.Double},System.Collections.Generic.IReadOnlyList{System.Boolean})"]
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 FV.
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