EquationSystemSolver.SetTargetFunctions Method

Sets the target functions.

Definition

Namespace: Numerics.NET.EquationSolvers
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public void SetTargetFunctions(
	Func<Vector<double>, double>[] functions
)

Parameters

functions  Func<Vector<Double>, Double>[]
An array of delegates that represent a multivariate function.

Remarks

The functions represent the left-hand sides of the equations in a system of non-linear equations.

Exceptions

InvalidOperationException

The method is called while the algorithm is running.

ArgumentNullException

functions is null.

See Also