IMSL C# Numerical Library

GenMinRes.Solve Method 

Generate an approximate solution to Ax=b using the Generalized Residual Method.

public double[] Solve(
   double[] b
);

Parameters

b
A double array which defines the right-hand side of the linear system.

Return Value

A double array containing the solution of the linear system.

Exceptions

Exception Type Condition
ArgumentException is thrown if the length of b is not consistent with n.

See Also

GenMinRes Class | Imsl.Math Namespace