1ZLAPLL(1) LAPACK auxiliary routine (version 3.1) ZLAPLL(1)
2
3
4
6 ZLAPLL - column vectors X and Y, let A = ( X Y )
7
9 SUBROUTINE ZLAPLL( N, X, INCX, Y, INCY, SSMIN )
10
11 INTEGER INCX, INCY, N
12
13 DOUBLE PRECISION SSMIN
14
15 COMPLEX*16 X( * ), Y( * )
16
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
27 N (input) INTEGER
28 The length of the vectors X and Y.
29
30 X (input/output) COMPLEX*16 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*16 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) DOUBLE PRECISION
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 ZLAPLL(1)