nag_real_banded_sparse_eigensystem_init (f12afc) (PDF version)
f12 Chapter Contents
f12 Chapter Introduction
NAG Library Manual

NAG Library Function Document

nag_real_banded_sparse_eigensystem_init (f12afc)

+ Contents

    1  Purpose
    7  Accuracy
    10  Example

1  Purpose

nag_real_banded_sparse_eigensystem_init (f12afc) is a setup function for nag_real_banded_sparse_eigensystem_sol (f12agc) which may be used for finding some eigenvalues (and optionally the corresponding eigenvectors) of a standard or generalized eigenvalue problem defined by real, banded, nonsymmetric matrices. The banded matrix must be stored using the LAPACK column ordered storage format for real banded nonsymmetric matrices (see Section 3.3.4 in the f07 Chapter Introduction).

2  Specification

#include <nag.h>
#include <nagf12.h>
void  nag_real_banded_sparse_eigensystem_init (Integer n, Integer nev, Integer ncv, Integer icomm[], Integer licomm, double comm[], Integer lcomm, NagError *fail)

3  Description

The pair of functions nag_real_banded_sparse_eigensystem_init (f12afc) and nag_real_banded_sparse_eigensystem_sol (f12agc) together with the option setting function nag_real_sparse_eigensystem_option (f12adc) are 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 banded real and nonsymmetric.
nag_real_banded_sparse_eigensystem_init (f12afc) is a setup function which must be called before the option setting function nag_real_sparse_eigensystem_option (f12adc) and the solver function nag_real_banded_sparse_eigensystem_sol (f12agc). Internally, nag_real_banded_sparse_eigensystem_sol (f12agc) makes calls to nag_real_sparse_eigensystem_iter (f12abc) and nag_real_sparse_eigensystem_sol (f12acc); the function documents for nag_real_sparse_eigensystem_iter (f12abc) and nag_real_sparse_eigensystem_sol (f12acc) should be consulted for details of the algorithm used.
This setup function initializes the communication arrays, sets (to their default values) all options that can be set by you via the option setting function nag_real_sparse_eigensystem_option (f12adc), and checks that the lengths of the communication arrays as passed by you are of sufficient length. For details of the options available and how to set them, see Section 11.1 in nag_real_sparse_eigensystem_option (f12adc).

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, Philidelphia

5  Arguments

1:     nIntegerInput
On entry: the order of the matrix A (and the order of the matrix B for the generalized problem) that defines the eigenvalue problem.
Constraint: n>0.
2:     nevIntegerInput
On entry: the number of eigenvalues to be computed.
Constraint: 0<nev<n-1.
3:     ncvIntegerInput
On entry: the number of Lanczos basis vectors to use during the computation.
At present there is no a priori analysis to guide the selection of ncv relative to nev. However, it is recommended that ncv2×nev+1. If many problems of the same type are to be solved, you should experiment with increasing ncv while keeping nev fixed for a given test problem. This will usually decrease the required number of matrix-vector operations but it also increases the work and storage required to maintain the orthogonal basis vectors. The optimal ‘cross-over’ with respect to CPU time is problem dependent and must be determined empirically.
Constraint: nev+1<ncvn.
4:     icomm[max1,licomm]IntegerCommunication Array
On exit: contains data to be communicated to nag_real_banded_sparse_eigensystem_sol (f12agc).
5:     licommIntegerInput
On entry: the dimension of the array icomm.
If licomm=-1, a workspace query is assumed and the function only calculates the required dimensions of icomm and comm, which it returns in icomm[0] and comm[0] respectively.
Constraint: licomm140 ​ or ​ licomm=-1.
6:     comm[max1,lcomm]doubleCommunication Array
On exit: contains data to be communicated to nag_real_banded_sparse_eigensystem_sol (f12agc).
7:     lcommIntegerInput
On entry: the dimension of the array comm.
If lcomm=-1, a workspace query is assumed and the function only calculates the dimensions of icomm and comm required by nag_real_banded_sparse_eigensystem_sol (f12agc), which it returns in icomm[0] and comm[0] respectively.
Constraint: lcomm60 ​ or ​ lcomm=-1.
8:     failNagError *Input/Output
The NAG error argument (see Section 3.6 in the Essential Introduction).

6  Error Indicators and Warnings

NE_BAD_PARAM
On entry, argument value had an illegal value.
NE_INT
On entry, n =value.
Constraint: n>0.
On entry, nev =value.
Constraint: nev>0.
NE_INT_2
The length of the integer array comm is too small lcomm =value, but must be at least value.
The length of the integer array icomm is too small licomm =value, but must be at least value.
NE_INT_3
On entry, ncv=value, nev=value and n=value.
Constraint: ncv>nev+1 and ncvn.
NE_INTERNAL_ERROR
An internal error has occurred in this function. Check the function call and any array sizes. If the call is correct then please contact NAG for assistance.

7  Accuracy

Not applicable.

8  Parallelism and Performance

Not applicable.

9  Further Comments

None.

10  Example

The use of nag_real_banded_sparse_eigensystem_init (f12afc) is illustrated in Section 10 in nag_real_banded_sparse_eigensystem_sol (f12agc).

nag_real_banded_sparse_eigensystem_init (f12afc) (PDF version)
f12 Chapter Contents
f12 Chapter Introduction
NAG Library Manual

© The Numerical Algorithms Group Ltd, Oxford, UK. 2014