1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
.TH SLAPLL l "15 June 2000" "LAPACK version 3.0" ")"
.SH NAME
SLAPLL - two column vectors X and Y, let A = ( X Y )
.SH SYNOPSIS
.TP 19
SUBROUTINE SLAPLL(
N, X, INCX, Y, INCY, SSMIN )
.TP 19
.ti +4
INTEGER
INCX, INCY, N
.TP 19
.ti +4
REAL
SSMIN
.TP 19
.ti +4
REAL
X( * ), Y( * )
.SH PURPOSE
Given two column vectors X and Y, let A = ( X Y ).
The subroutine first computes the QR factorization of A = Q*R,
and then computes the SVD of the 2-by-2 upper triangular matrix R.
The smaller singular value of R is returned in SSMIN, which is used
as the measurement of the linear dependency of the vectors X and Y.
.SH ARGUMENTS
.TP 8
N (input) INTEGER
The length of the vectors X and Y.
.TP 8
X (input/output) REAL array,
dimension (1+(N-1)*INCX)
On entry, X contains the N-vector X.
On exit, X is overwritten.
.TP 8
INCX (input) INTEGER
The increment between successive elements of X. INCX > 0.
.TP 8
Y (input/output) REAL array,
dimension (1+(N-1)*INCY)
On entry, Y contains the N-vector Y.
On exit, Y is overwritten.
.TP 8
INCY (input) INTEGER
The increment between successive elements of Y. INCY > 0.
.TP 8
SSMIN (output) REAL
The smallest singular value of the N-by-2 matrix A = ( X Y ).
|