hide long namesshow long names
hide short namesshow short names
Integer type:  int32  int64  nag_int  show int32  show int32  show int64  show int64  show nag_int  show nag_int

PDF version (NAG web site, 64-bit version, 64-bit version)
Chapter Contents
Chapter Introduction
NAG Toolbox

NAG Toolbox: nag_sparseig_real_symm_band_init (f12ff)

 Contents

    1  Purpose
    2  Syntax
    7  Accuracy
    9  Example

Purpose

nag_sparseig_real_symm_band_init (f12ff) is a setup function for nag_sparseig_real_symm_band_solve (f12fg) which can be used to find some eigenvalues (and optionally the corresponding eigenvectors) of a standard or generalized eigenvalue problem defined by real, banded, symmetric matrices. The banded matrix must be stored using the LAPACK storage format for real banded nonsymmetric matrices.

Syntax

[icomm, comm, ifail] = f12ff(n, nev, ncv)
[icomm, comm, ifail] = nag_sparseig_real_symm_band_init(n, nev, ncv)

Description

The pair of functions nag_sparseig_real_symm_band_init (f12ff) and nag_sparseig_real_symm_band_solve (f12fg) together with the option setting function nag_sparseig_real_symm_option (f12fd) 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 symmetric.
nag_sparseig_real_symm_band_init (f12ff) is a setup function which must be called before the option setting function nag_sparseig_real_symm_option (f12fd) and the solver function nag_sparseig_real_symm_band_solve (f12fg). Internally, nag_sparseig_real_symm_band_solve (f12fg) makes calls to nag_sparseig_real_symm_iter (f12fb) and nag_sparseig_real_symm_proc (f12fc); the function documents for nag_sparseig_real_symm_iter (f12fb) and nag_sparseig_real_symm_proc (f12fc) 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_sparseig_real_symm_option (f12fd), 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 Description of the s in nag_sparseig_real_symm_option (f12fd).

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

Parameters

Compulsory Input Parameters

1:     n int64int32nag_int scalar
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:     nev int64int32nag_int scalar
The number of eigenvalues to be computed.
Constraint: 0<nev<n-1.
3:     ncv int64int32nag_int scalar
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<ncvn.

Optional Input Parameters

None.

Output Parameters

1:     icommmax1,licomm int64int32nag_int array
Contains data to be communicated to nag_sparseig_real_symm_band_solve (f12fg).
2:     commmax1,lcomm – double array
Contains data to be communicated to nag_sparseig_real_symm_band_solve (f12fg).
3:     ifail int64int32nag_int scalar
ifail=0 unless the function detects an error (see Error Indicators and Warnings).

Error Indicators and Warnings

Errors or warnings detected by the function:
   ifail=1
On entry, n0.
   ifail=2
On entry, nev0.
   ifail=3
On entry, ncvnev or ncv>n.
   ifail=4
On entry, licomm<140 and licomm-1.
   ifail=5
On entry, lcomm<60 and lcomm-1.
   ifail=-99
An unexpected error has been triggered by this routine. Please contact NAG.
   ifail=-399
Your licence key may have expired or may not have been installed correctly.
   ifail=-999
Dynamic memory allocation failed.

Accuracy

Not applicable.

Further Comments

None.

Example

The use of nag_sparseig_real_symm_band_init (f12ff) is illustrated by the example program of nag_sparseig_real_symm_band_solve (f12fg) (see Example in nag_sparseig_real_symm_band_solve (f12fg)).
function f12ff_example


fprintf('f12ff example results\n\n');

nx  = int64(10);
n   = nx^2;
nev = int64(4);
ncv = int64(10);

% Banded matrices and dimensions
kl  = nx;
ku  = nx;
mb  = zeros(2*kl+ku+1,n);
ab  = zeros(2*kl+ku+1,n);

% Construct the matrix A in banded form and store in ab.
% Main diagonal of A.
h2 = 1/double((nx+1)*(nx+1));
ab(kl+ku+1,1:n) = 4/h2;

% First sub- and super-diagonal of A.
ab(kl+ku,   1:n) = -1/h2;
ab(kl+ku+2, 1:n) = -1/h2;
ab(kl+ku,   1:nx:n) = 0;
ab(kl+ku+2,nx:nx:n) = 0;
% kl-th subdiagonal and ku-th super-diagonal.
ab(kl+1     ,nx+1:n) = -1/h2;
ab(2*kl+ku+1,1:n-nx) = -1/h2;

% Solver setup
[icomm, comm, ifail] = f12ff( ...
                              n, nev, ncv);

% Solver
sigma = 0;
resid = zeros(n,1);
[nconv, d, z, resid, v, comm, icomm, ifail] = ...
f12fg( ...
       kl, ku, ab, mb, sigma, resid, comm, icomm);

fprintf('Largest %d Eigenvalues\n',nconv);
fprintf('%10.2f\n',d(1:nconv));


f12ff example results

Largest 4 Eigenvalues
    891.17
    919.78
    919.78
    948.39

PDF version (NAG web site, 64-bit version, 64-bit version)
Chapter Contents
Chapter Introduction
NAG Toolbox

© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015