![]() |
LAPACK
3.9.0
LAPACK: Linear Algebra PACKage
|
| real function sqrt12 | ( | integer | M, |
| integer | N, | ||
| real, dimension( lda, * ) | A, | ||
| integer | LDA, | ||
| real, dimension( * ) | S, | ||
| real, dimension( lwork ) | WORK, | ||
| integer | LWORK | ||
| ) |
SQRT12
SQRT12 computes the singular values `svlues' of the upper trapezoid
of A(1:M,1:N) and returns the ratio
|| s - svlues||/(||svlues||*eps*max(M,N)) | [in] | M | M is INTEGER
The number of rows of the matrix A. |
| [in] | N | N is INTEGER
The number of columns of the matrix A. |
| [in] | A | A is REAL array, dimension (LDA,N)
The M-by-N matrix A. Only the upper trapezoid is referenced. |
| [in] | LDA | LDA is INTEGER
The leading dimension of the array A. |
| [in] | S | S is REAL array, dimension (min(M,N))
The singular values of the matrix A. |
| [out] | WORK | WORK is REAL array, dimension (LWORK) |
| [in] | LWORK | LWORK is INTEGER
The length of the array WORK. LWORK >= max(M*N + 4*min(M,N) +
max(M,N), M*N+2*MIN( M, N )+4*N). |
Definition at line 91 of file sqrt12.f.