view libcruft/blas-xtra/xzdotc.f @ 7948:af10baa63915 ss-3-1-50

3.1.50 snapshot
author John W. Eaton <jwe@octave.org>
date Fri, 18 Jul 2008 17:42:48 -0400
parents 5499ec4d8705
children
line wrap: on
line source

      subroutine xzdotc (n, zx, incx, zy, incy, retval)
      double complex zdotc, zx(*), zy(*), retval
      integer n, incx, incy
      external zdotc
      retval = zdotc (n, zx, incx, zy, incy)
      return
      end