1DAXPY(1) BLAS routine DAXPY(1)
23
4
NAME
6DAXPY - time a vector plus a vector
7
SYNOPSIS
9SUBROUTINE DAXPY(N,DA,DX,INCX,DY,INCY)
1011
DOUBLE PRECISION DA
1213
INTEGER INCX,INCY,N
1415
DOUBLE PRECISION DX(*),DY(*)
16
PURPOSE
18constant times a vector plus a vector.
19uses unrolled loops for increments equal to one.
20jack dongarra, linpack, 3/11/78.
21modified 12/3/93, array(1) declarations changed to array(*)
2223
24
25
26
27
BLAS routine November 2006 DAXPY(1)