NAG FL Interface
f12aef (real_​monit)

Note: this routine uses optional parameters to define choices in the problem specification. If you wish to use default settings for all of the optional parameters, then the option setting routine f12adf need not be called. If, however, you wish to reset some or all of the settings please refer to Section 11 in f12adf for a detailed description of the specification of the optional parameters.
Settings help

FL Name Style:


FL Specification Language:


1 Purpose

f12aef can be used to return additional monitoring information during computation. It is in a suite of routines consisting of f12aaf, f12abf, f12acf, f12adf and f12aef.

2 Specification

Fortran Interface
Subroutine f12aef ( niter, nconv, ritzr, ritzi, rzest, icomm, comm)
Integer, Intent (In) :: icomm(*)
Integer, Intent (Out) :: niter, nconv
Real (Kind=nag_wp), Intent (In) :: comm(*)
Real (Kind=nag_wp), Intent (Inout) :: ritzr(*), ritzi(*), rzest(*)
C Header Interface
#include <nag.h>
void  f12aef_ (Integer *niter, Integer *nconv, double ritzr[], double ritzi[], double rzest[], const Integer icomm[], const double comm[])
The routine may be called by the names f12aef or nagf_sparseig_real_monit.

3 Description

The suite of routines is designed to calculate some of the eigenvalues, λ , (and optionally the corresponding eigenvectors, x ) of a standard eigenvalue problem Ax = λx , or of a generalized eigenvalue problem Ax = λBx of order n , where n is large and the coefficient matrices A and B are sparse, real and nonsymmetric. The suite can also be used to find selected eigenvalues/eigenvectors of smaller scale dense, real and nonsymmetric problems.
On an intermediate exit from f12abf with irevcm = 4 , f12aef may be called to return monitoring information on the progress of the Arnoldi iterative process. The information returned by f12aef is:
f12aef does not have an equivalent routine from the ARPACK package which prints various levels of detail of monitoring information through an output channel controlled via an argument value (see Lehoucq et al. (1998) for details of ARPACK routines). f12aef should not be called at any time other than immediately following an irevcm = 4 return from f12abf.

4 References

Lehoucq R B (2001) Implicitly restarted Arnoldi methods and subspace iteration SIAM Journal on Matrix Analysis and Applications 23 551–562
Lehoucq R B and Scott J A (1996) An evaluation of software for computing eigenvalues of sparse nonsymmetric matrices Preprint MCS-P547-1195 Argonne National Laboratory
Lehoucq R B and Sorensen D C (1996) Deflation techniques for an implicitly restarted Arnoldi iteration SIAM Journal on Matrix Analysis and Applications 17 789–821
Lehoucq R B, Sorensen D C and Yang C (1998) ARPACK Users' Guide: Solution of Large-scale Eigenvalue Problems with Implicitly Restarted Arnoldi Methods SIAM, Philadelphia

5 Arguments

1: niter Integer Output
On exit: the number of the current Arnoldi iteration.
2: nconv Integer Output
On exit: the number of converged eigenvalues so far.
3: ritzr(*) Real (Kind=nag_wp) array Output
Note: the dimension of the array ritzr must be at least ncv (see f12aaf).
On exit: the first nconv locations of the array ritzr contain the real parts of the converged approximate eigenvalues.
4: ritzi(*) Real (Kind=nag_wp) array Output
Note: the dimension of the array ritzi must be at least ncv (see f12aaf).
On exit: the first nconv locations of the array ritzi contain the imaginary parts of the converged approximate eigenvalues.
5: rzest(*) Real (Kind=nag_wp) array Output
Note: the dimension of the array rzest must be at least ncv (see f12aaf).
On exit: the first nconv locations of the array rzest contain the Ritz estimates (error bounds) on the converged approximate eigenvalues.
6: icomm(*) Integer array Communication Array
Note: the dimension of the array icomm must be at least max(1,licomm), where licomm is passed to the setup routine  (see f12aaf).
On entry: the array icomm output by the preceding call to f12abf.
7: comm(*) Real (Kind=nag_wp) array Communication Array
Note: the dimension of the array comm must be at least max(1,lcomm), where lcomm is passed to the setup routine  (see f12aaf).
On entry: the array comm output by the preceding call to f12abf.

6 Error Indicators and Warnings

None.

7 Accuracy

A Ritz value, λ , is deemed to have converged if its Ritz estimate Tolerance × |λ| . The default Tolerance used is the machine precision given by x02ajf.

8 Parallelism and Performance

Background information to multithreading can be found in the Multithreading documentation.
f12aef is not threaded in any implementation.

9 Further Comments

None.

10 Example

This example solves Ax = λBx in shifted-real mode, where A is the tridiagonal matrix with 2 on the diagonal, - 2 on the subdiagonal and 3 on the superdiagonal. The matrix B is the tridiagonal matrix with 4 on the diagonal and 1 on the off-diagonals. The shift sigma, σ , is a complex number, and the operator used in the shifted-real iterative process is op = real ( (A-σB) −1 B) .

10.1 Program Text

Program Text (f12aefe.f90)

10.2 Program Data

Program Data (f12aefe.d)

10.3 Program Results

Program Results (f12aefe.r)