Mercurial > hg > octave-max
view libcruft/blas-xtra/xzdotu.f @ 14316:0216b5d6c80c stable
semilogx.m: Correct incorrectly coded %!test.
* semilogx.m: Correct incorrectly coded %!test.
author | Rik <octave@nomad.inbox5.com> |
---|---|
date | Thu, 02 Feb 2012 10:08:35 -0800 |
parents | 5499ec4d8705 |
children |
line wrap: on
line source
subroutine xzdotu (n, zx, incx, zy, incy, retval) double complex zdotu, zx(*), zy(*), retval integer n, incx, incy external zdotu retval = zdotu (n, zx, incx, zy, incy) return end