LAPACK  3.9.0
LAPACK: Linear Algebra PACKage

◆ dlange()

double precision function dlange ( character  NORM,
integer  M,
integer  N,
double precision, dimension( lda, * )  A,
integer  LDA,
double precision, dimension( * )  WORK 
)

DLANGE returns the value of the 1-norm, Frobenius norm, infinity-norm, or the largest absolute value of any element of a general rectangular matrix.

Download DLANGE + dependencies [TGZ] [ZIP] [TXT]

Purpose:
 DLANGE  returns the value of the one norm,  or the Frobenius norm, or
 the  infinity norm,  or the  element of  largest absolute value  of a
 real matrix A.
Returns
DLANGE
    DLANGE = ( max(abs(A(i,j))), NORM = 'M' or 'm'
             (
             ( norm1(A),         NORM = '1', 'O' or 'o'
             (
             ( normI(A),         NORM = 'I' or 'i'
             (
             ( normF(A),         NORM = 'F', 'f', 'E' or 'e'

 where  norm1  denotes the  one norm of a matrix (maximum column sum),
 normI  denotes the  infinity norm  of a matrix  (maximum row sum) and
 normF  denotes the  Frobenius norm of a matrix (square root of sum of
 squares).  Note that  max(abs(A(i,j)))  is not a consistent matrix norm.
Parameters
[in]NORM
          NORM is CHARACTER*1
          Specifies the value to be returned in DLANGE as described
          above.
[in]M
          M is INTEGER
          The number of rows of the matrix A.  M >= 0.  When M = 0,
          DLANGE is set to zero.
[in]N
          N is INTEGER
          The number of columns of the matrix A.  N >= 0.  When N = 0,
          DLANGE is set to zero.
[in]A
          A is DOUBLE PRECISION array, dimension (LDA,N)
          The m by n matrix A.
[in]LDA
          LDA is INTEGER
          The leading dimension of the array A.  LDA >= max(M,1).
[out]WORK
          WORK is DOUBLE PRECISION array, dimension (MAX(1,LWORK)),
          where LWORK >= M when NORM = 'I'; otherwise, WORK is not
          referenced.
Author
Univ. of Tennessee
Univ. of California Berkeley
Univ. of Colorado Denver
NAG Ltd.
Date
December 2016

Definition at line 116 of file dlange.f.

116 *
117 * -- LAPACK auxiliary routine (version 3.7.0) --
118 * -- LAPACK is a software package provided by Univ. of Tennessee, --
119 * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
120 * December 2016
121 *
122  IMPLICIT NONE
123 * .. Scalar Arguments ..
124  CHARACTER NORM
125  INTEGER LDA, M, N
126 * ..
127 * .. Array Arguments ..
128  DOUBLE PRECISION A( LDA, * ), WORK( * )
129 * ..
130 *
131 * =====================================================================
132 *
133 * .. Parameters ..
134  DOUBLE PRECISION ONE, ZERO
135  parameter( one = 1.0d+0, zero = 0.0d+0 )
136 * ..
137 * .. Local Scalars ..
138  INTEGER I, J
139  DOUBLE PRECISION SUM, VALUE, TEMP
140 * ..
141 * .. Local Arrays ..
142  DOUBLE PRECISION SSQ( 2 ), COLSSQ( 2 )
143 * ..
144 * .. External Subroutines ..
145  EXTERNAL dlassq, dcombssq
146 * ..
147 * .. External Functions ..
148  LOGICAL LSAME, DISNAN
149  EXTERNAL lsame, disnan
150 * ..
151 * .. Intrinsic Functions ..
152  INTRINSIC abs, min, sqrt
153 * ..
154 * .. Executable Statements ..
155 *
156  IF( min( m, n ).EQ.0 ) THEN
157  VALUE = zero
158  ELSE IF( lsame( norm, 'M' ) ) THEN
159 *
160 * Find max(abs(A(i,j))).
161 *
162  VALUE = zero
163  DO 20 j = 1, n
164  DO 10 i = 1, m
165  temp = abs( a( i, j ) )
166  IF( VALUE.LT.temp .OR. disnan( temp ) ) VALUE = temp
167  10 CONTINUE
168  20 CONTINUE
169  ELSE IF( ( lsame( norm, 'O' ) ) .OR. ( norm.EQ.'1' ) ) THEN
170 *
171 * Find norm1(A).
172 *
173  VALUE = zero
174  DO 40 j = 1, n
175  sum = zero
176  DO 30 i = 1, m
177  sum = sum + abs( a( i, j ) )
178  30 CONTINUE
179  IF( VALUE.LT.sum .OR. disnan( sum ) ) VALUE = sum
180  40 CONTINUE
181  ELSE IF( lsame( norm, 'I' ) ) THEN
182 *
183 * Find normI(A).
184 *
185  DO 50 i = 1, m
186  work( i ) = zero
187  50 CONTINUE
188  DO 70 j = 1, n
189  DO 60 i = 1, m
190  work( i ) = work( i ) + abs( a( i, j ) )
191  60 CONTINUE
192  70 CONTINUE
193  VALUE = zero
194  DO 80 i = 1, m
195  temp = work( i )
196  IF( VALUE.LT.temp .OR. disnan( temp ) ) VALUE = temp
197  80 CONTINUE
198  ELSE IF( ( lsame( norm, 'F' ) ) .OR. ( lsame( norm, 'E' ) ) ) THEN
199 *
200 * Find normF(A).
201 * SSQ(1) is scale
202 * SSQ(2) is sum-of-squares
203 * For better accuracy, sum each column separately.
204 *
205  ssq( 1 ) = zero
206  ssq( 2 ) = one
207  DO 90 j = 1, n
208  colssq( 1 ) = zero
209  colssq( 2 ) = one
210  CALL dlassq( m, a( 1, j ), 1, colssq( 1 ), colssq( 2 ) )
211  CALL dcombssq( ssq, colssq )
212  90 CONTINUE
213  VALUE = ssq( 1 )*sqrt( ssq( 2 ) )
214  END IF
215 *
216  dlange = VALUE
217  RETURN
218 *
219 * End of DLANGE
220 *
Here is the call graph for this function:
Here is the caller graph for this function:
disnan
logical function disnan(DIN)
DISNAN tests input for NaN.
Definition: disnan.f:61
dlange
double precision function dlange(NORM, M, N, A, LDA, WORK)
DLANGE returns the value of the 1-norm, Frobenius norm, infinity-norm, or the largest absolute value ...
Definition: dlange.f:116
lsame
logical function lsame(CA, CB)
LSAME
Definition: lsame.f:55
dlassq
subroutine dlassq(N, X, INCX, SCALE, SUMSQ)
DLASSQ updates a sum of squares represented in scaled form.
Definition: dlassq.f:105
dcombssq
subroutine dcombssq(V1, V2)
DCOMBSSQ adds two scaled sum of squares quantities.
Definition: dcombssq.f:62