1CAXPY(1) BLAS routine CAXPY(1)
23
4
NAME
6CAXPY - constant times a vector plus a vector
7
SYNOPSIS
9SUBROUTINE CAXPY(N,CA,CX,INCX,CY,INCY)
1011
COMPLEX CA
1213
INTEGER INCX,INCY,N
1415
COMPLEX CX(*),CY(*)
16
PURPOSE
18CAXPY constant times a vector plus a vector.
1920
FURTHER DETAILS
22jack dongarra, linpack, 3/11/78.
23modified 12/3/93, array(1) declarations changed to array(*)
2425
26
27
28
BLAS routine November 2006 CAXPY(1)