Equation System Solver.Set Gradient Functions Method
Definition
Namespace: Numerics.NET.EquationSolvers
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
Overload List
Set | Sets the target functions. |
Set | Sets the target functions. |
SetGradientFunctions(Func<Vector<Double>, Vector<Double>>[])
Sets the target functions.
public void SetGradientFunctions(
Func<Vector<double>, Vector<double>>[] gradients
)
Parameters
Remarks
The elements of gradients represent the gradients of the left-hand sides of the equations in a system of non-linear equations.
SetGradientFunctions(Func<Vector<Double>, Vector<Double>, Vector<Double>>[])
Sets the target functions.
public void SetGradientFunctions(
Func<Vector<double>, Vector<double>?, Vector<double>>[] gradients
)
Parameters
Remarks
The elements of gradients represent the gradients of the left-hand sides of the equations in a system of non-linear equations.
Exceptions
Invalid | The method is called while the algorithm is running. |
Argument | gradients is null. |