EquationSystemSolver.Solve Method

Definition

Namespace: Numerics.NET.EquationSolvers
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0

Overload List

Solve() Attempts to find a root or zero of the target function.
Solve(Vector<Double>) Attempts to find the point where the target function equals the specified value.

Solve

Attempts to find a root or zero of the target function.
C#
public DenseVector<double> Solve()

Return Value

DenseVector<Double>
The best approximation to the solution.

Exceptions

ConvergenceException

The root finding algorithm failed to converge to within the specified tolerance.

Solve(Vector<Double>)

Attempts to find the point where the target function equals the specified value.
C#
public DenseVector<double> Solve(
	Vector<double> rightHandSide
)

Parameters

rightHandSide  Vector<Double>
A vector containing the right-hand sides of the equations.

Return Value

DenseVector<Double>
The best approximation to the solution.

Exceptions

ArgumentNullException

rightHandSide is null.

ConvergenceException

The root finding algorithm failed to converge to within the specified tolerance.

See Also