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.

sqrt13.f 4.1 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. *> \brief \b SQRT13
  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 SQRT13( SCALE, M, N, A, LDA, NORMA, ISEED )
  12. *
  13. * .. Scalar Arguments ..
  14. * INTEGER LDA, M, N, SCALE
  15. * REAL NORMA
  16. * ..
  17. * .. Array Arguments ..
  18. * INTEGER ISEED( 4 )
  19. * REAL A( LDA, * )
  20. * ..
  21. *
  22. *
  23. *> \par Purpose:
  24. * =============
  25. *>
  26. *> \verbatim
  27. *>
  28. *> SQRT13 generates a full-rank matrix that may be scaled to have large
  29. *> or small norm.
  30. *> \endverbatim
  31. *
  32. * Arguments:
  33. * ==========
  34. *
  35. *> \param[in] SCALE
  36. *> \verbatim
  37. *> SCALE is INTEGER
  38. *> SCALE = 1: normally scaled matrix
  39. *> SCALE = 2: matrix scaled up
  40. *> SCALE = 3: matrix scaled down
  41. *> \endverbatim
  42. *>
  43. *> \param[in] M
  44. *> \verbatim
  45. *> M is INTEGER
  46. *> The number of rows of the matrix A.
  47. *> \endverbatim
  48. *>
  49. *> \param[in] N
  50. *> \verbatim
  51. *> N is INTEGER
  52. *> The number of columns of A.
  53. *> \endverbatim
  54. *>
  55. *> \param[out] A
  56. *> \verbatim
  57. *> A is REAL array, dimension (LDA,N)
  58. *> The M-by-N matrix A.
  59. *> \endverbatim
  60. *>
  61. *> \param[in] LDA
  62. *> \verbatim
  63. *> LDA is INTEGER
  64. *> The leading dimension of the array A.
  65. *> \endverbatim
  66. *>
  67. *> \param[out] NORMA
  68. *> \verbatim
  69. *> NORMA is REAL
  70. *> The one-norm of A.
  71. *> \endverbatim
  72. *>
  73. *> \param[in,out] ISEED
  74. *> \verbatim
  75. *> ISEED is integer array, dimension (4)
  76. *> Seed for random number generator
  77. *> \endverbatim
  78. *
  79. * Authors:
  80. * ========
  81. *
  82. *> \author Univ. of Tennessee
  83. *> \author Univ. of California Berkeley
  84. *> \author Univ. of Colorado Denver
  85. *> \author NAG Ltd.
  86. *
  87. *> \ingroup single_lin
  88. *
  89. * =====================================================================
  90. SUBROUTINE SQRT13( SCALE, M, N, A, LDA, NORMA, ISEED )
  91. *
  92. * -- LAPACK test routine --
  93. * -- LAPACK is a software package provided by Univ. of Tennessee, --
  94. * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
  95. *
  96. * .. Scalar Arguments ..
  97. INTEGER LDA, M, N, SCALE
  98. REAL NORMA
  99. * ..
  100. * .. Array Arguments ..
  101. INTEGER ISEED( 4 )
  102. REAL A( LDA, * )
  103. * ..
  104. *
  105. * =====================================================================
  106. *
  107. * .. Parameters ..
  108. REAL ONE
  109. PARAMETER ( ONE = 1.0E0 )
  110. * ..
  111. * .. Local Scalars ..
  112. INTEGER INFO, J
  113. REAL BIGNUM, SMLNUM
  114. * ..
  115. * .. External Functions ..
  116. REAL SASUM, SLAMCH, SLANGE
  117. EXTERNAL SASUM, SLAMCH, SLANGE
  118. * ..
  119. * .. External Subroutines ..
  120. EXTERNAL SLABAD, SLARNV, SLASCL
  121. * ..
  122. * .. Intrinsic Functions ..
  123. INTRINSIC SIGN
  124. * ..
  125. * .. Local Arrays ..
  126. REAL DUMMY( 1 )
  127. * ..
  128. * .. Executable Statements ..
  129. *
  130. IF( M.LE.0 .OR. N.LE.0 )
  131. $ RETURN
  132. *
  133. * benign matrix
  134. *
  135. DO 10 J = 1, N
  136. CALL SLARNV( 2, ISEED, M, A( 1, J ) )
  137. IF( J.LE.M ) THEN
  138. A( J, J ) = A( J, J ) + SIGN( SASUM( M, A( 1, J ), 1 ),
  139. $ A( J, J ) )
  140. END IF
  141. 10 CONTINUE
  142. *
  143. * scaled versions
  144. *
  145. IF( SCALE.NE.1 ) THEN
  146. NORMA = SLANGE( 'Max', M, N, A, LDA, DUMMY )
  147. SMLNUM = SLAMCH( 'Safe minimum' )
  148. BIGNUM = ONE / SMLNUM
  149. CALL SLABAD( SMLNUM, BIGNUM )
  150. SMLNUM = SMLNUM / SLAMCH( 'Epsilon' )
  151. BIGNUM = ONE / SMLNUM
  152. *
  153. IF( SCALE.EQ.2 ) THEN
  154. *
  155. * matrix scaled up
  156. *
  157. CALL SLASCL( 'General', 0, 0, NORMA, BIGNUM, M, N, A, LDA,
  158. $ INFO )
  159. ELSE IF( SCALE.EQ.3 ) THEN
  160. *
  161. * matrix scaled down
  162. *
  163. CALL SLASCL( 'General', 0, 0, NORMA, SMLNUM, M, N, A, LDA,
  164. $ INFO )
  165. END IF
  166. END IF
  167. *
  168. NORMA = SLANGE( 'One-norm', M, N, A, LDA, DUMMY )
  169. RETURN
  170. *
  171. * End of SQRT13
  172. *
  173. END