1ZAXPY(1) BLAS routine ZAXPY(1)
23
4
NAME
6ZAXPY - ZAXPY constant times 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
18ZAXPY constant times a vector plus a vector.
1920
FURTHER DETAILS
22jack dongarra, 3/11/78.
23modified 12/3/93, array(1) declarations changed to array(*)
2425
26
27
28
BLAS routine November 2008 ZAXPY(1)