1SSYCON(1) LAPACK routine (version 3.1) SSYCON(1)
2
3
4
6 SSYCON - the reciprocal of the condition number (in the 1-norm) of a
7 real symmetric matrix A using the factorization A = U*D*U**T or A =
8 L*D*L**T computed by SSYTRF
9
11 SUBROUTINE SSYCON( UPLO, N, A, LDA, IPIV, ANORM, RCOND, WORK, IWORK,
12 INFO )
13
14 CHARACTER UPLO
15
16 INTEGER INFO, LDA, N
17
18 REAL ANORM, RCOND
19
20 INTEGER IPIV( * ), IWORK( * )
21
22 REAL A( LDA, * ), WORK( * )
23
25 SSYCON estimates the reciprocal of the condition number (in the 1-norm)
26 of a real symmetric matrix A using the factorization A = U*D*U**T or A
27 = L*D*L**T computed by SSYTRF.
28
29 An estimate is obtained for norm(inv(A)), and the reciprocal of the
30 condition number is computed as RCOND = 1 / (ANORM * norm(inv(A))).
31
32
34 UPLO (input) CHARACTER*1
35 Specifies whether the details of the factorization are stored
36 as an upper or lower triangular matrix. = 'U': Upper triangu‐
37 lar, form is A = U*D*U**T;
38 = 'L': Lower triangular, form is A = L*D*L**T.
39
40 N (input) INTEGER
41 The order of the matrix A. N >= 0.
42
43 A (input) REAL array, dimension (LDA,N)
44 The block diagonal matrix D and the multipliers used to obtain
45 the factor U or L as computed by SSYTRF.
46
47 LDA (input) INTEGER
48 The leading dimension of the array A. LDA >= max(1,N).
49
50 IPIV (input) INTEGER array, dimension (N)
51 Details of the interchanges and the block structure of D as
52 determined by SSYTRF.
53
54 ANORM (input) REAL
55 The 1-norm of the original matrix A.
56
57 RCOND (output) REAL
58 The reciprocal of the condition number of the matrix A, com‐
59 puted as RCOND = 1/(ANORM * AINVNM), where AINVNM is an esti‐
60 mate of the 1-norm of inv(A) computed in this routine.
61
62 WORK (workspace) REAL array, dimension (2*N)
63
64 IWORK (workspace) INTEGER array, dimension (N)
65
66 INFO (output) INTEGER
67 = 0: successful exit
68 < 0: if INFO = -i, the i-th argument had an illegal value
69
70
71
72 LAPACK routine (version 3.1) November 2006 SSYCON(1)