view libcruft/blas-xtra/xzdotc.f @ 9088:77e71f3da3d6

Fix documentation image printing under new development code Printed images are now clipped to image size rather than to papersize of 8.5x11 Images are scaled to 4 inches and centered in display pdf printing is sub-optimal as texi2pdf picks the png rendering (bitmap) rather than the pdf rendering (vector).
author Rik <rdrider0-list@yahoo.com>
date Sat, 04 Apr 2009 14:28:22 -0700
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