*DECK DBNORM
DOUBLE PRECISION FUNCTION DBNORM (N, A, NRA, ML, MU, W)
C-----------------------------------------------------------------------
C This function computes the norm of a banded N by N matrix,
C stored in the array A, that is consistent with the weighted max-norm
C on vectors, with weights stored in the array W.
C ML and MU are the lower and upper half-bandwidths of the matrix.
C NRA is the first dimension of the A array, NRA .ge. ML+MU+1.
C In terms of the matrix elements a(i,j), the norm is given by:
C DBNORM = MAX(i=1,...,N) ( W(i) * Sum(j=1,...,N) ABS(a(i,j))/W(j) )
C-----------------------------------------------------------------------
INTEGER N, NRA, ML, MU
INTEGER I, I1, JLO, JHI, J
DOUBLE PRECISION A, W
DOUBLE PRECISION AN, SUM
DIMENSION A(NRA,N), W(N)
AN = 0.0D0
DO 20 I = 1,N
SUM = 0.0D0
I1 = I + MU + 1
JLO = MAX(I-ML,1)
JHI = MIN(I+MU,N)
DO 10 J = JLO,JHI
10 SUM = SUM + ABS(A(I1-J,J))/W(J)
AN = MAX(AN,SUM*W(I))
20 CONTINUE
DBNORM = AN
RETURN
C----------------------- End of Function DBNORM ------------------------
END