GNU Octave 11.1.0
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
 
Loading...
Searching...
No Matches
xclange.f
Go to the documentation of this file.
1 subroutine xclange (norm, m, n, a, lda, work, retval)
2 character norm
3 integer lda, m, n
4 complex a (lda, *)
5 real work (*), clange, retval
6 external clange
7 retval = clange(norm, m, n, a, lda, work)
8 return
9 end
subroutine xclange(norm, m, n, a, lda, work, retval)
Definition xclange.f:2