You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

sgecon.f 7.8 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284
  1. *> \brief \b SGECON
  2. *
  3. * =========== DOCUMENTATION ===========
  4. *
  5. * Online html documentation available at
  6. * http://www.netlib.org/lapack/explore-html/
  7. *
  8. *> \htmlonly
  9. *> Download SGECON + dependencies
  10. *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/sgecon.f">
  11. *> [TGZ]</a>
  12. *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.zip?format=zip&filename=/lapack/lapack_routine/sgecon.f">
  13. *> [ZIP]</a>
  14. *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.txt?format=txt&filename=/lapack/lapack_routine/sgecon.f">
  15. *> [TXT]</a>
  16. *> \endhtmlonly
  17. *
  18. * Definition:
  19. * ===========
  20. *
  21. * SUBROUTINE SGECON( NORM, N, A, LDA, ANORM, RCOND, WORK, IWORK,
  22. * INFO )
  23. *
  24. * .. Scalar Arguments ..
  25. * CHARACTER NORM
  26. * INTEGER INFO, LDA, N
  27. * REAL ANORM, RCOND
  28. * ..
  29. * .. Array Arguments ..
  30. * INTEGER IWORK( * )
  31. * REAL A( LDA, * ), WORK( * )
  32. * ..
  33. *
  34. *
  35. *> \par Purpose:
  36. * =============
  37. *>
  38. *> \verbatim
  39. *>
  40. *> SGECON estimates the reciprocal of the condition number of a general
  41. *> real matrix A, in either the 1-norm or the infinity-norm, using
  42. *> the LU factorization computed by SGETRF.
  43. *>
  44. *> An estimate is obtained for norm(inv(A)), and the reciprocal of the
  45. *> condition number is computed as
  46. *> RCOND = 1 / ( norm(A) * norm(inv(A)) ).
  47. *> \endverbatim
  48. *
  49. * Arguments:
  50. * ==========
  51. *
  52. *> \param[in] NORM
  53. *> \verbatim
  54. *> NORM is CHARACTER*1
  55. *> Specifies whether the 1-norm condition number or the
  56. *> infinity-norm condition number is required:
  57. *> = '1' or 'O': 1-norm;
  58. *> = 'I': Infinity-norm.
  59. *> \endverbatim
  60. *>
  61. *> \param[in] N
  62. *> \verbatim
  63. *> N is INTEGER
  64. *> The order of the matrix A. N >= 0.
  65. *> \endverbatim
  66. *>
  67. *> \param[in] A
  68. *> \verbatim
  69. *> A is REAL array, dimension (LDA,N)
  70. *> The factors L and U from the factorization A = P*L*U
  71. *> as computed by SGETRF.
  72. *> \endverbatim
  73. *>
  74. *> \param[in] LDA
  75. *> \verbatim
  76. *> LDA is INTEGER
  77. *> The leading dimension of the array A. LDA >= max(1,N).
  78. *> \endverbatim
  79. *>
  80. *> \param[in] ANORM
  81. *> \verbatim
  82. *> ANORM is REAL
  83. *> If NORM = '1' or 'O', the 1-norm of the original matrix A.
  84. *> If NORM = 'I', the infinity-norm of the original matrix A.
  85. *> \endverbatim
  86. *>
  87. *> \param[out] RCOND
  88. *> \verbatim
  89. *> RCOND is REAL
  90. *> The reciprocal of the condition number of the matrix A,
  91. *> computed as RCOND = 1/(norm(A) * norm(inv(A))).
  92. *> \endverbatim
  93. *>
  94. *> \param[out] WORK
  95. *> \verbatim
  96. *> WORK is REAL array, dimension (4*N)
  97. *> \endverbatim
  98. *>
  99. *> \param[out] IWORK
  100. *> \verbatim
  101. *> IWORK is INTEGER array, dimension (N)
  102. *> \endverbatim
  103. *>
  104. *> \param[out] INFO
  105. *> \verbatim
  106. *> INFO is INTEGER
  107. *> = 0: successful exit
  108. *> < 0: if INFO = -i, the i-th argument had an illegal value.
  109. *> NaNs are illegal values for ANORM, and they propagate to
  110. *> the output parameter RCOND.
  111. *> Infinity is illegal for ANORM, and it propagates to the output
  112. *> parameter RCOND as 0.
  113. *> = 1: if RCOND = NaN, or
  114. *> RCOND = Inf, or
  115. *> the computed norm of the inverse of A is 0.
  116. *> In the latter, RCOND = 0 is returned.
  117. *> \endverbatim
  118. *
  119. * Authors:
  120. * ========
  121. *
  122. *> \author Univ. of Tennessee
  123. *> \author Univ. of California Berkeley
  124. *> \author Univ. of Colorado Denver
  125. *> \author NAG Ltd.
  126. *
  127. *> \ingroup gecon
  128. *
  129. * =====================================================================
  130. SUBROUTINE SGECON( NORM, N, A, LDA, ANORM, RCOND, WORK, IWORK,
  131. $ INFO )
  132. *
  133. * -- LAPACK computational routine --
  134. * -- LAPACK is a software package provided by Univ. of Tennessee, --
  135. * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
  136. *
  137. * .. Scalar Arguments ..
  138. CHARACTER NORM
  139. INTEGER INFO, LDA, N
  140. REAL ANORM, RCOND
  141. * ..
  142. * .. Array Arguments ..
  143. INTEGER IWORK( * )
  144. REAL A( LDA, * ), WORK( * )
  145. * ..
  146. *
  147. * =====================================================================
  148. *
  149. * .. Parameters ..
  150. REAL ONE, ZERO
  151. PARAMETER ( ONE = 1.0E+0, ZERO = 0.0E+0 )
  152. * ..
  153. * .. Local Scalars ..
  154. LOGICAL ONENRM
  155. CHARACTER NORMIN
  156. INTEGER IX, KASE, KASE1
  157. REAL AINVNM, SCALE, SL, SMLNUM, SU, HUGEVAL
  158. * ..
  159. * .. Local Arrays ..
  160. INTEGER ISAVE( 3 )
  161. * ..
  162. * .. External Functions ..
  163. LOGICAL LSAME, SISNAN
  164. INTEGER ISAMAX
  165. REAL SLAMCH
  166. EXTERNAL LSAME, ISAMAX, SLAMCH, SISNAN
  167. * ..
  168. * .. External Subroutines ..
  169. EXTERNAL SLACN2, SLATRS, SRSCL, XERBLA
  170. * ..
  171. * .. Intrinsic Functions ..
  172. INTRINSIC ABS, MAX
  173. * ..
  174. * .. Executable Statements ..
  175. *
  176. HUGEVAL = SLAMCH( 'Overflow' )
  177. *
  178. * Test the input parameters.
  179. *
  180. INFO = 0
  181. ONENRM = NORM.EQ.'1' .OR. LSAME( NORM, 'O' )
  182. IF( .NOT.ONENRM .AND. .NOT.LSAME( NORM, 'I' ) ) THEN
  183. INFO = -1
  184. ELSE IF( N.LT.0 ) THEN
  185. INFO = -2
  186. ELSE IF( LDA.LT.MAX( 1, N ) ) THEN
  187. INFO = -4
  188. ELSE IF( ANORM.LT.ZERO ) THEN
  189. INFO = -5
  190. END IF
  191. IF( INFO.NE.0 ) THEN
  192. CALL XERBLA( 'SGECON', -INFO )
  193. RETURN
  194. END IF
  195. *
  196. * Quick return if possible
  197. *
  198. RCOND = ZERO
  199. IF( N.EQ.0 ) THEN
  200. RCOND = ONE
  201. RETURN
  202. ELSE IF( ANORM.EQ.ZERO ) THEN
  203. RETURN
  204. ELSE IF( SISNAN( ANORM ) ) THEN
  205. RCOND = ANORM
  206. INFO = -5
  207. RETURN
  208. ELSE IF( ANORM.GT.HUGEVAL ) THEN
  209. INFO = -5
  210. RETURN
  211. END IF
  212. *
  213. SMLNUM = SLAMCH( 'Safe minimum' )
  214. *
  215. * Estimate the norm of inv(A).
  216. *
  217. AINVNM = ZERO
  218. NORMIN = 'N'
  219. IF( ONENRM ) THEN
  220. KASE1 = 1
  221. ELSE
  222. KASE1 = 2
  223. END IF
  224. KASE = 0
  225. 10 CONTINUE
  226. CALL SLACN2( N, WORK( N+1 ), WORK, IWORK, AINVNM, KASE, ISAVE )
  227. IF( KASE.NE.0 ) THEN
  228. IF( KASE.EQ.KASE1 ) THEN
  229. *
  230. * Multiply by inv(L).
  231. *
  232. CALL SLATRS( 'Lower', 'No transpose', 'Unit', NORMIN, N, A,
  233. $ LDA, WORK, SL, WORK( 2*N+1 ), INFO )
  234. *
  235. * Multiply by inv(U).
  236. *
  237. CALL SLATRS( 'Upper', 'No transpose', 'Non-unit', NORMIN, N,
  238. $ A, LDA, WORK, SU, WORK( 3*N+1 ), INFO )
  239. ELSE
  240. *
  241. * Multiply by inv(U**T).
  242. *
  243. CALL SLATRS( 'Upper', 'Transpose', 'Non-unit', NORMIN, N, A,
  244. $ LDA, WORK, SU, WORK( 3*N+1 ), INFO )
  245. *
  246. * Multiply by inv(L**T).
  247. *
  248. CALL SLATRS( 'Lower', 'Transpose', 'Unit', NORMIN, N, A,
  249. $ LDA, WORK, SL, WORK( 2*N+1 ), INFO )
  250. END IF
  251. *
  252. * Divide X by 1/(SL*SU) if doing so will not cause overflow.
  253. *
  254. SCALE = SL*SU
  255. NORMIN = 'Y'
  256. IF( SCALE.NE.ONE ) THEN
  257. IX = ISAMAX( N, WORK, 1 )
  258. IF( SCALE.LT.ABS( WORK( IX ) )*SMLNUM .OR. SCALE.EQ.ZERO )
  259. $ GO TO 20
  260. CALL SRSCL( N, SCALE, WORK, 1 )
  261. END IF
  262. GO TO 10
  263. END IF
  264. *
  265. * Compute the estimate of the reciprocal condition number.
  266. *
  267. IF( AINVNM.NE.ZERO ) THEN
  268. RCOND = ( ONE / AINVNM ) / ANORM
  269. ELSE
  270. INFO = 1
  271. RETURN
  272. END IF
  273. *
  274. * Check for NaNs and Infs
  275. *
  276. IF( SISNAN( RCOND ) .OR. RCOND.GT.HUGEVAL )
  277. $ INFO = 1
  278. *
  279. 20 CONTINUE
  280. RETURN
  281. *
  282. * End of SGECON
  283. *
  284. END