1CLA_PORCOND_LCA(P1A)CK routine (version 3.2) CLA_PORCOND_C(1)
2
3
4
6 CLA_PORCOND_C - SLA_PORCOND_C Compute the infinity norm condition num‐
7 ber of op(A) * inv(diag(C)) where C is a REAL vector WORK is a COM‐
8 PLEX workspace of size 2*N, and RWORK is a REAL workspace of size 3*N
9
11 REAL FUNCTION CLA_PORCOND_C( UPLO, N, A, LDA, AF, LDAF, C, CAPPLY,
12 INFO, WORK, RWORK )
13
14 IMPLICIT NONE
15
16 CHARACTER UPLO
17
18 LOGICAL CAPPLY
19
20 INTEGER N, LDA, LDAF, INFO
21
22 COMPLEX A( LDA, * ), AF( LDAF, * ), WORK( * )
23
24 REAL C( * ), RWORK( * )
25
27 SLA_PORCOND_C Computes the infinity norm condition number of
28 op(A) * inv(diag(C)) where C is a REAL vector
29 WORK is a COMPLEX workspace of size 2*N, and
30 RWORK is a REAL workspace of size 3*N.
31
32
33
34 LAPACK routine (version 3.2) November 2008 CLA_PORCOND_C(1)