Mercurial > hg > octave-thorsten
view libcruft/lapack-xtra/xslange.f @ 14361:8de863b7126b
doc: Use Octave preference for double quote in docstrings in all .cc files
* cellfun.cc, chol.cc, colamd.cc, dlmread.cc, eigs.cc, fftw.cc, lu.cc,
luinc.cc, matrix_type.cc, spparms.cc, symrcm.cc, data.cc, dirfns.cc, error.cc:
Use Octave preference for double quote in docstrings.
author | Rik <octave@nomad.inbox5.com> |
---|---|
date | Mon, 13 Feb 2012 07:45:41 -0800 |
parents | 82be108cc558 |
children |
line wrap: on
line source
subroutine xslange (norm, m, n, a, lda, work, retval) character norm integer lda, m, n real a (lda, *), work (*), slange, retval retval = slange (norm, m, n, a, lda, work) return end