GNU Octave  4.4.1
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
xcdotu.f
Go to the documentation of this file.
1  subroutine xcdotu (n, zx, incx, zy, incy, retval)
2  complex cdotu, zx(*), zy(*), retval
3  integer n, incx, incy
4  external cdotu
5  retval = cdotu(n, zx, incx, zy, incy)
6  return
7  end
subroutine xcdotu(n, zx, incx, zy, incy, retval)
Definition: xcdotu.f:2