1CLAPLL(1)           LAPACK auxiliary routine (version 3.1)           CLAPLL(1)
2
3
4

NAME

6       CLAPLL - column vectors X and Y, let   A = ( X Y )
7

SYNOPSIS

9       SUBROUTINE CLAPLL( N, X, INCX, Y, INCY, SSMIN )
10
11           INTEGER        INCX, INCY, N
12
13           REAL           SSMIN
14
15           COMPLEX        X( * ), Y( * )
16

PURPOSE

18       Given two column vectors X and Y, let
19
20       The subroutine first computes the QR factorization of A = Q*R, and then
21       computes the SVD of the 2-by-2 upper triangular matrix R.  The  smaller
22       singular value of R is returned in SSMIN, which is used as the measure‐
23       ment of the linear dependency of the vectors X and Y.
24
25

ARGUMENTS

27       N       (input) INTEGER
28               The length of the vectors X and Y.
29
30       X       (input/output) COMPLEX array, dimension (1+(N-1)*INCX)
31               On entry, X contains the N-vector X.  On exit, X  is  overwrit‐
32               ten.
33
34       INCX    (input) INTEGER
35               The increment between successive elements of X. INCX > 0.
36
37       Y       (input/output) COMPLEX array, dimension (1+(N-1)*INCY)
38               On  entry,  Y contains the N-vector Y.  On exit, Y is overwrit‐
39               ten.
40
41       INCY    (input) INTEGER
42               The increment between successive elements of Y. INCY > 0.
43
44       SSMIN   (output) REAL
45               The smallest singular value of the N-by-2 matrix A = ( X Y ).
46
47
48
49 LAPACK auxiliary routine (versionNo3v.e1m)ber 2006                       CLAPLL(1)
Impressum