GNU Octave  4.2.1
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
xdlange.f
Go to the documentation of this file.
1  subroutine xdlange (norm, m, n, a, lda, work, retval)
2  character norm
3  integer lda, m, n
4  double precision a (lda, *), work (*), dlange, retval
5  retval = dlange(norm, m, n, a, lda, work)
6  return
7  end
subroutine xdlange(norm, m, n, a, lda, work, retval)
Definition: xdlange.f:1