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 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146
|
---
:name: zla_gbrcond_c
:md5sum: 1dcbea81eec20033235e6bc8b3fbb4c5
:category: :function
:type: doublereal
:arguments:
- trans:
:type: char
:intent: input
- n:
:type: integer
:intent: input
- kl:
:type: integer
:intent: input
- ku:
:type: integer
:intent: input
- ab:
:type: doublecomplex
:intent: input
:dims:
- ldab
- n
- ldab:
:type: integer
:intent: input
- afb:
:type: doublecomplex
:intent: input
:dims:
- ldafb
- n
- ldafb:
:type: integer
:intent: input
- ipiv:
:type: integer
:intent: input
:dims:
- n
- c:
:type: doublereal
:intent: input
:dims:
- n
- capply:
:type: logical
:intent: input
- info:
:type: integer
:intent: output
- work:
:type: doublecomplex
:intent: input
:dims:
- 2*n
- rwork:
:type: doublereal
:intent: input
:dims:
- n
:substitutions: {}
:fortran_help: " DOUBLE PRECISION FUNCTION ZLA_GBRCOND_C( TRANS, N, KL, KU, AB, LDAB, AFB, LDAFB, IPIV, C, CAPPLY, INFO, WORK, RWORK )\n\n\
* Purpose\n\
* =======\n\
*\n\
* ZLA_GBRCOND_C Computes the infinity norm condition number of\n\
* op(A) * inv(diag(C)) where C is a DOUBLE PRECISION vector.\n\
*\n\n\
* Arguments\n\
* =========\n\
*\n\
* TRANS (input) CHARACTER*1\n\
* Specifies the form of the system of equations:\n\
* = 'N': A * X = B (No transpose)\n\
* = 'T': A**T * X = B (Transpose)\n\
* = 'C': A**H * X = B (Conjugate Transpose = Transpose)\n\
*\n\
* N (input) INTEGER\n\
* The number of linear equations, i.e., the order of the\n\
* matrix A. N >= 0.\n\
*\n\
* KL (input) INTEGER\n\
* The number of subdiagonals within the band of A. KL >= 0.\n\
*\n\
* KU (input) INTEGER\n\
* The number of superdiagonals within the band of A. KU >= 0.\n\
*\n\
* AB (input) COMPLEX*16 array, dimension (LDAB,N)\n\
* On entry, the matrix A in band storage, in rows 1 to KL+KU+1.\n\
* The j-th column of A is stored in the j-th column of the\n\
* array AB as follows:\n\
* AB(KU+1+i-j,j) = A(i,j) for max(1,j-KU)<=i<=min(N,j+kl)\n\
*\n\
* LDAB (input) INTEGER\n\
* The leading dimension of the array AB. LDAB >= KL+KU+1.\n\
*\n\
* AFB (input) COMPLEX*16 array, dimension (LDAFB,N)\n\
* Details of the LU factorization of the band matrix A, as\n\
* computed by ZGBTRF. U is stored as an upper triangular\n\
* band matrix with KL+KU superdiagonals in rows 1 to KL+KU+1,\n\
* and the multipliers used during the factorization are stored\n\
* in rows KL+KU+2 to 2*KL+KU+1.\n\
*\n\
* LDAFB (input) INTEGER\n\
* The leading dimension of the array AFB. LDAFB >= 2*KL+KU+1.\n\
*\n\
* IPIV (input) INTEGER array, dimension (N)\n\
* The pivot indices from the factorization A = P*L*U\n\
* as computed by ZGBTRF; row i of the matrix was interchanged\n\
* with row IPIV(i).\n\
*\n\
* C (input) DOUBLE PRECISION array, dimension (N)\n\
* The vector C in the formula op(A) * inv(diag(C)).\n\
*\n\
* CAPPLY (input) LOGICAL\n\
* If .TRUE. then access the vector C in the formula above.\n\
*\n\
* INFO (output) INTEGER\n\
* = 0: Successful exit.\n\
* i > 0: The ith argument is invalid.\n\
*\n\
* WORK (input) COMPLEX*16 array, dimension (2*N).\n\
* Workspace.\n\
*\n\
* RWORK (input) DOUBLE PRECISION array, dimension (N).\n\
* Workspace.\n\
*\n\n\
* =====================================================================\n\
*\n\
* .. Local Scalars ..\n LOGICAL NOTRANS\n INTEGER KASE, I, J\n DOUBLE PRECISION AINVNM, ANORM, TMP\n COMPLEX*16 ZDUM\n\
* ..\n\
* .. Local Arrays ..\n INTEGER ISAVE( 3 )\n\
* ..\n\
* .. External Functions ..\n LOGICAL LSAME\n EXTERNAL LSAME\n\
* ..\n\
* .. External Subroutines ..\n EXTERNAL ZLACN2, ZGBTRS, XERBLA\n\
* ..\n\
* .. Intrinsic Functions ..\n INTRINSIC ABS, MAX\n\
* ..\n\
* .. Statement Functions ..\n DOUBLE PRECISION CABS1\n\
* ..\n\
* .. Statement Function Definitions ..\n CABS1( ZDUM ) = ABS( DBLE( ZDUM ) ) + ABS( DIMAG( ZDUM ) )\n\
* ..\n"
|