Click or drag to resize
GenMinRes Constructor
GMRES linear system solver constructor.

Namespace: Imsl.Math
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax
public GenMinRes(
	int n,
	GenMinResIFunction argF
)

Parameters

n
Type: SystemInt32
An int scalar value which defines the order of the system to be solved.
argF
Type: Imsl.MathGenMinResIFunction
An IFunction that defines the user-supplied function which computes  z = Ap . If argF implements IPreconditioner then right preconditioning is performed using this user supplied function. Otherwise, no preconditioning is performed. Note that argF can be used to act upon the coefficients of matrix A stored in different storage modes. See the examples.
See Also