view libcruft/blas-xtra/xsdot.f @ 12432:455f2db40a8f release-3-4-x

update NEWS
author John W. Eaton <jwe@octave.org>
date Wed, 09 Feb 2011 16:29:14 -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