ConjugateGradient Constructor |
Conjugate gradient constructor.
Namespace: Imsl.MathAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public ConjugateGradient(
int n,
ConjugateGradientIFunction argF
)
Public Sub New (
n As Integer,
argF As ConjugateGradientIFunction
)
public:
ConjugateGradient(
int n,
ConjugateGradientIFunction^ argF
)
new :
n : int *
argF : ConjugateGradientIFunction -> ConjugateGradient
Parameters
- n
- Type: SystemInt32
An int scalar value defining the order of the matrix.
- argF
- Type: Imsl.MathConjugateGradientIFunction
An IFunction that defines the user-supplied
function which computes .
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 Also