Equation System Solver.Solve Method
Definition
Namespace: Extreme.Mathematics.EquationSolvers
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Overload List
Solve() | Attempts to find a root or zero of the target function. |
Solve( | 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.
public DenseVector<double> Solve()
Return Value
DenseVector<Double>The best approximation to the solution.
Exceptions
Convergence | 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.
public DenseVector<double> Solve(
Vector<double> rightHandSide
)
Parameters
Return Value
DenseVector<Double>The best approximation to the solution.
Exceptions
Argument | rightHandSide is null. |
Convergence | The root finding algorithm failed to converge to within the specified tolerance. |