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.

dlatb9.f 9.4 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372
  1. *> \brief \b DLATB9
  2. *
  3. * =========== DOCUMENTATION ===========
  4. *
  5. * Online html documentation available at
  6. * http://www.netlib.org/lapack/explore-html/
  7. *
  8. * Definition:
  9. * ===========
  10. *
  11. * SUBROUTINE DLATB9( PATH, IMAT, M, P, N, TYPE, KLA, KUA, KLB, KUB,
  12. * ANORM, BNORM, MODEA, MODEB, CNDNMA, CNDNMB,
  13. * DISTA, DISTB )
  14. *
  15. * .. Scalar Arguments ..
  16. * CHARACTER DISTA, DISTB, TYPE
  17. * CHARACTER*3 PATH
  18. * INTEGER IMAT, KLA, KLB, KUA, KUB, M, MODEA, MODEB, N, P
  19. * DOUBLE PRECISION ANORM, BNORM, CNDNMA, CNDNMB
  20. * ..
  21. *
  22. *
  23. *> \par Purpose:
  24. * =============
  25. *>
  26. *> \verbatim
  27. *>
  28. *> DLATB9 sets parameters for the matrix generator based on the type of
  29. *> matrix to be generated.
  30. *> \endverbatim
  31. *
  32. * Arguments:
  33. * ==========
  34. *
  35. *> \param[in] PATH
  36. *> \verbatim
  37. *> PATH is CHARACTER*3
  38. *> The LAPACK path name.
  39. *> \endverbatim
  40. *>
  41. *> \param[in] IMAT
  42. *> \verbatim
  43. *> IMAT is INTEGER
  44. *> An integer key describing which matrix to generate for this
  45. *> path.
  46. *> = 1: A: diagonal, B: upper triangular
  47. *> = 2: A: upper triangular, B: upper triangular
  48. *> = 3: A: lower triangular, B: upper triangular
  49. *> Else: A: general dense, B: general dense
  50. *> \endverbatim
  51. *>
  52. *> \param[in] M
  53. *> \verbatim
  54. *> M is INTEGER
  55. *> The number of rows in the matrix to be generated.
  56. *> \endverbatim
  57. *>
  58. *> \param[in] P
  59. *> \verbatim
  60. *> P is INTEGER
  61. *> \endverbatim
  62. *>
  63. *> \param[in] N
  64. *> \verbatim
  65. *> N is INTEGER
  66. *> The number of columns in the matrix to be generated.
  67. *> \endverbatim
  68. *>
  69. *> \param[out] TYPE
  70. *> \verbatim
  71. *> TYPE is CHARACTER*1
  72. *> The type of the matrix to be generated:
  73. *> = 'S': symmetric matrix;
  74. *> = 'P': symmetric positive (semi)definite matrix;
  75. *> = 'N': nonsymmetric matrix.
  76. *> \endverbatim
  77. *>
  78. *> \param[out] KLA
  79. *> \verbatim
  80. *> KLA is INTEGER
  81. *> The lower band width of the matrix to be generated.
  82. *> \endverbatim
  83. *>
  84. *> \param[out] KUA
  85. *> \verbatim
  86. *> KUA is INTEGER
  87. *> The upper band width of the matrix to be generated.
  88. *> \endverbatim
  89. *>
  90. *> \param[out] KLB
  91. *> \verbatim
  92. *> KLB is INTEGER
  93. *> The lower band width of the matrix to be generated.
  94. *> \endverbatim
  95. *>
  96. *> \param[out] KUB
  97. *> \verbatim
  98. *> KUA is INTEGER
  99. *> The upper band width of the matrix to be generated.
  100. *> \endverbatim
  101. *>
  102. *> \param[out] ANORM
  103. *> \verbatim
  104. *> ANORM is DOUBLE PRECISION
  105. *> The desired norm of the matrix to be generated. The diagonal
  106. *> matrix of singular values or eigenvalues is scaled by this
  107. *> value.
  108. *> \endverbatim
  109. *>
  110. *> \param[out] BNORM
  111. *> \verbatim
  112. *> BNORM is DOUBLE PRECISION
  113. *> The desired norm of the matrix to be generated. The diagonal
  114. *> matrix of singular values or eigenvalues is scaled by this
  115. *> value.
  116. *> \endverbatim
  117. *>
  118. *> \param[out] MODEA
  119. *> \verbatim
  120. *> MODEA is INTEGER
  121. *> A key indicating how to choose the vector of eigenvalues.
  122. *> \endverbatim
  123. *>
  124. *> \param[out] MODEB
  125. *> \verbatim
  126. *> MODEB is INTEGER
  127. *> A key indicating how to choose the vector of eigenvalues.
  128. *> \endverbatim
  129. *>
  130. *> \param[out] CNDNMA
  131. *> \verbatim
  132. *> CNDNMA is DOUBLE PRECISION
  133. *> The desired condition number.
  134. *> \endverbatim
  135. *>
  136. *> \param[out] CNDNMB
  137. *> \verbatim
  138. *> CNDNMB is DOUBLE PRECISION
  139. *> The desired condition number.
  140. *> \endverbatim
  141. *>
  142. *> \param[out] DISTA
  143. *> \verbatim
  144. *> DISTA is CHARACTER*1
  145. *> The type of distribution to be used by the random number
  146. *> generator.
  147. *> \endverbatim
  148. *>
  149. *> \param[out] DISTB
  150. *> \verbatim
  151. *> DISTB is CHARACTER*1
  152. *> The type of distribution to be used by the random number
  153. *> generator.
  154. *> \endverbatim
  155. *
  156. * Authors:
  157. * ========
  158. *
  159. *> \author Univ. of Tennessee
  160. *> \author Univ. of California Berkeley
  161. *> \author Univ. of Colorado Denver
  162. *> \author NAG Ltd.
  163. *
  164. *> \date November 2011
  165. *
  166. *> \ingroup double_eig
  167. *
  168. * =====================================================================
  169. SUBROUTINE DLATB9( PATH, IMAT, M, P, N, TYPE, KLA, KUA, KLB, KUB,
  170. $ ANORM, BNORM, MODEA, MODEB, CNDNMA, CNDNMB,
  171. $ DISTA, DISTB )
  172. *
  173. * -- LAPACK test routine (version 3.4.0) --
  174. * -- LAPACK is a software package provided by Univ. of Tennessee, --
  175. * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
  176. * November 2011
  177. *
  178. * .. Scalar Arguments ..
  179. CHARACTER DISTA, DISTB, TYPE
  180. CHARACTER*3 PATH
  181. INTEGER IMAT, KLA, KLB, KUA, KUB, M, MODEA, MODEB, N, P
  182. DOUBLE PRECISION ANORM, BNORM, CNDNMA, CNDNMB
  183. * ..
  184. *
  185. * =====================================================================
  186. *
  187. * .. Parameters ..
  188. DOUBLE PRECISION SHRINK, TENTH
  189. PARAMETER ( SHRINK = 0.25D0, TENTH = 0.1D+0 )
  190. DOUBLE PRECISION ONE, TEN
  191. PARAMETER ( ONE = 1.0D+0, TEN = 1.0D+1 )
  192. * ..
  193. * .. Local Scalars ..
  194. LOGICAL FIRST
  195. DOUBLE PRECISION BADC1, BADC2, EPS, LARGE, SMALL
  196. * ..
  197. * .. External Functions ..
  198. LOGICAL LSAMEN
  199. DOUBLE PRECISION DLAMCH
  200. EXTERNAL LSAMEN, DLAMCH
  201. * ..
  202. * .. Intrinsic Functions ..
  203. INTRINSIC MAX, SQRT
  204. * ..
  205. * .. External Subroutines ..
  206. EXTERNAL DLABAD
  207. * ..
  208. * .. Save statement ..
  209. SAVE EPS, SMALL, LARGE, BADC1, BADC2, FIRST
  210. * ..
  211. * .. Data statements ..
  212. DATA FIRST / .TRUE. /
  213. * ..
  214. * .. Executable Statements ..
  215. *
  216. * Set some constants for use in the subroutine.
  217. *
  218. IF( FIRST ) THEN
  219. FIRST = .FALSE.
  220. EPS = DLAMCH( 'Precision' )
  221. BADC2 = TENTH / EPS
  222. BADC1 = SQRT( BADC2 )
  223. SMALL = DLAMCH( 'Safe minimum' )
  224. LARGE = ONE / SMALL
  225. *
  226. * If it looks like we're on a Cray, take the square root of
  227. * SMALL and LARGE to avoid overflow and underflow problems.
  228. *
  229. CALL DLABAD( SMALL, LARGE )
  230. SMALL = SHRINK*( SMALL / EPS )
  231. LARGE = ONE / SMALL
  232. END IF
  233. *
  234. * Set some parameters we don't plan to change.
  235. *
  236. TYPE = 'N'
  237. DISTA = 'S'
  238. DISTB = 'S'
  239. MODEA = 3
  240. MODEB = 4
  241. *
  242. * Set the lower and upper bandwidths.
  243. *
  244. IF( LSAMEN( 3, PATH, 'GRQ' ) .OR. LSAMEN( 3, PATH, 'LSE' ) .OR.
  245. $ LSAMEN( 3, PATH, 'GSV' ) ) THEN
  246. *
  247. * A: M by N, B: P by N
  248. *
  249. IF( IMAT.EQ.1 ) THEN
  250. *
  251. * A: diagonal, B: upper triangular
  252. *
  253. KLA = 0
  254. KUA = 0
  255. KLB = 0
  256. KUB = MAX( N-1, 0 )
  257. *
  258. ELSE IF( IMAT.EQ.2 ) THEN
  259. *
  260. * A: upper triangular, B: upper triangular
  261. *
  262. KLA = 0
  263. KUA = MAX( N-1, 0 )
  264. KLB = 0
  265. KUB = MAX( N-1, 0 )
  266. *
  267. ELSE IF( IMAT.EQ.3 ) THEN
  268. *
  269. * A: lower triangular, B: upper triangular
  270. *
  271. KLA = MAX( M-1, 0 )
  272. KUA = 0
  273. KLB = 0
  274. KUB = MAX( N-1, 0 )
  275. *
  276. ELSE
  277. *
  278. * A: general dense, B: general dense
  279. *
  280. KLA = MAX( M-1, 0 )
  281. KUA = MAX( N-1, 0 )
  282. KLB = MAX( P-1, 0 )
  283. KUB = MAX( N-1, 0 )
  284. *
  285. END IF
  286. *
  287. ELSE IF( LSAMEN( 3, PATH, 'GQR' ) .OR. LSAMEN( 3, PATH, 'GLM' ) )
  288. $ THEN
  289. *
  290. * A: N by M, B: N by P
  291. *
  292. IF( IMAT.EQ.1 ) THEN
  293. *
  294. * A: diagonal, B: lower triangular
  295. *
  296. KLA = 0
  297. KUA = 0
  298. KLB = MAX( N-1, 0 )
  299. KUB = 0
  300. ELSE IF( IMAT.EQ.2 ) THEN
  301. *
  302. * A: lower triangular, B: diagonal
  303. *
  304. KLA = MAX( N-1, 0 )
  305. KUA = 0
  306. KLB = 0
  307. KUB = 0
  308. *
  309. ELSE IF( IMAT.EQ.3 ) THEN
  310. *
  311. * A: lower triangular, B: upper triangular
  312. *
  313. KLA = MAX( N-1, 0 )
  314. KUA = 0
  315. KLB = 0
  316. KUB = MAX( P-1, 0 )
  317. *
  318. ELSE
  319. *
  320. * A: general dense, B: general dense
  321. *
  322. KLA = MAX( N-1, 0 )
  323. KUA = MAX( M-1, 0 )
  324. KLB = MAX( N-1, 0 )
  325. KUB = MAX( P-1, 0 )
  326. END IF
  327. *
  328. END IF
  329. *
  330. * Set the condition number and norm.
  331. *
  332. CNDNMA = TEN*TEN
  333. CNDNMB = TEN
  334. IF( LSAMEN( 3, PATH, 'GQR' ) .OR. LSAMEN( 3, PATH, 'GRQ' ) .OR.
  335. $ LSAMEN( 3, PATH, 'GSV' ) ) THEN
  336. IF( IMAT.EQ.5 ) THEN
  337. CNDNMA = BADC1
  338. CNDNMB = BADC1
  339. ELSE IF( IMAT.EQ.6 ) THEN
  340. CNDNMA = BADC2
  341. CNDNMB = BADC2
  342. ELSE IF( IMAT.EQ.7 ) THEN
  343. CNDNMA = BADC1
  344. CNDNMB = BADC2
  345. ELSE IF( IMAT.EQ.8 ) THEN
  346. CNDNMA = BADC2
  347. CNDNMB = BADC1
  348. END IF
  349. END IF
  350. *
  351. ANORM = TEN
  352. BNORM = TEN*TEN*TEN
  353. IF( LSAMEN( 3, PATH, 'GQR' ) .OR. LSAMEN( 3, PATH, 'GRQ' ) ) THEN
  354. IF( IMAT.EQ.7 ) THEN
  355. ANORM = SMALL
  356. BNORM = LARGE
  357. ELSE IF( IMAT.EQ.8 ) THEN
  358. ANORM = LARGE
  359. BNORM = SMALL
  360. END IF
  361. END IF
  362. *
  363. IF( N.LE.1 ) THEN
  364. CNDNMA = ONE
  365. CNDNMB = ONE
  366. END IF
  367. *
  368. RETURN
  369. *
  370. * End of DLATB9
  371. *
  372. END