EquationSystemSolver.SetTargetFunctions Method

Sets the target functions.

Definition

Namespace: Extreme.Mathematics.EquationSolvers
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
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

InvalidOperationExceptionThe method is called while the algorithm is running.
ArgumentNullExceptionfunctions is null.

See Also