view libcruft/blas-xtra/xsdot.f @ 12385:c468c5b902b3 release-3-4-x ss-3-3-92

version is now 3.3.92
author John W. Eaton <jwe@octave.org>
date Sun, 06 Feb 2011 06:27:19 -0500
parents 9a5e2d13fa5a
children
line wrap: on
line source

      subroutine xsdot (n, dx, incx, dy, incy, retval)
      real ddot, dx(*), dy(*), retval, sdot
      integer n, incx, incy
      retval = sdot (n, dx, incx, dy, incy)
      return
      end