1ZAXPY(1) BLAS routine ZAXPY(1)
23
4
NAME
6ZAXPY - time a vector plus a vector
7
SYNOPSIS
9SUBROUTINE ZAXPY(N,ZA,ZX,INCX,ZY,INCY)
1011
DOUBLE COMPLEX ZA
1213
INTEGER INCX,INCY,N
1415
DOUBLE COMPLEX ZX(*),ZY(*)
16
PURPOSE
18constant times a vector plus a vector.
19jack dongarra, 3/11/78.
20modified 12/3/93, array(1) declarations changed to array(*)
2122
23
24
25
26
BLAS routine November 2006 ZAXPY(1)