1DAXPY(1) BLAS routine DAXPY(1)
23
4
NAME
6DAXPY - DAXPY constant times 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
18DAXPY constant times a vector plus a vector.
19uses unrolled loops for increments equal to one.
2021
FURTHER DETAILS
23jack dongarra, linpack, 3/11/78.
24modified 12/3/93, array(1) declarations changed to array(*)
2526
27
28
29
BLAS routine November 2008 DAXPY(1)