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

NAME

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

SYNOPSIS

9       SUBROUTINE SLAPLL( N, X, INCX, Y, INCY, SSMIN )
10
11           INTEGER        INCX, INCY, N
12
13           REAL           SSMIN
14
15           REAL           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) REAL array,
31               dimension (1+(N-1)*INCX) On entry, X contains the  N-vector  X.
32               On exit, X is overwritten.
33
34       INCX    (input) INTEGER
35               The increment between successive elements of X. INCX > 0.
36
37       Y       (input/output) REAL array,
38               dimension  (1+(N-1)*INCY)  On entry, Y contains the N-vector Y.
39               On exit, Y is overwritten.
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                       SLAPLL(1)
Impressum