Mercurial > hg > octave-nkf
view libcruft/lapack-xtra/xdlange.f @ 14373:d00900b3dc4b
doc: Use two spaces at start of sentence.
* ndgrid.m, uiwait.m, sprandn.m, sprandsym.m, quantile.m:
Use two spaces at start of sentence.
author | Rik <octave@nomad.inbox5.com> |
---|---|
date | Thu, 16 Feb 2012 15:44:42 -0800 |
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