Click or drag to resize

RationalInverseEvaluateDerivative Method

Evaluates the derivative of the fit function with respect to parameters for all rows.

Namespace: Altaxo.Calc.FitFunctions.General
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public void EvaluateDerivative(
	IROMatrix<double> independent,
	IReadOnlyList<double> parameters,
	IReadOnlyList<bool>? isFixed,
	IMatrix<double> DF,
	IReadOnlyList<bool>? dependentVariableChoice
)

Parameters

independent  IROMatrixDouble
The independent variables.
parameters  IReadOnlyListDouble
The parameter values.
isFixed  IReadOnlyListBoolean
Flags indicating fixed parameters.
DF  IMatrixDouble
The matrix receiving the derivatives.
dependentVariableChoice  IReadOnlyListBoolean
The selected dependent variables.

Implements

IFitFunctionWithDerivativeEvaluateDerivative(IROMatrixDouble, IReadOnlyListDouble, IReadOnlyListBoolean, IMatrixDouble, IReadOnlyListBoolean)
See Also