view libcruft/lapack-xtra/xdlange.f @ 10930:b0f2b9a2b681

__go_draw_axes__.m: Additional pointtype fix.
author Ben Abbott <bpabbott@mac.com>
date Tue, 31 Aug 2010 12:39:04 -0400
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