view libcruft/lapack-xtra/xdlange.f @ 5100:5a92c3177fc6 before-gnuplot-split

[project @ 2004-12-27 17:20:38 by jwe]
author jwe
date Mon, 27 Dec 2004 17:20:38 +0000
parents 55e59236c5e5
children
line wrap: on
line source

      subroutine xdlange (norm, m, n, a, lda, work, retval)
      character norm
      integer lda, m, n
      double precision a (lda, *), work (*), dlange, retval
      retval = dlange (norm, m, n, a, lda, work)
      return
      end