File: zdotusub.f

package info (click to toggle)
libitpp 4.0.4-2
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 7,520 kB
  • ctags: 6,341
  • sloc: cpp: 51,608; sh: 9,248; makefile: 636; fortran: 8
file content (16 lines) | stat: -rw-r--r-- 403 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
c     zdotusub.f
c
c     The program is a fortran wrapper for zdotu.
c     Witten by Keita Teranishi.  2/11/1998
c     Interface modified by Adam Piatyszek to match ACML zdotusub_()
c
      subroutine zdotusub(dotu,n,x,incx,y,incy)
c
      external zdotu
      double complex zdotu,dotu
      integer n,incx,incy
      double complex x(*),y(*)
c
      dotu=zdotu(n,x,incx,y,incy)
      return
      end