1SAXPY(1) BLAS routine SAXPY(1)
23
4
NAME
6SAXPY - constant times a vector plus a vector
7
SYNOPSIS
9SUBROUTINE SAXPY(N,SA,SX,INCX,SY,INCY)
1011
REAL SA
1213
INTEGER INCX,INCY,N
1415
REAL SX(*),SY(*)
16
PURPOSE
18SAXPY constant times a vector plus a vector.
19uses unrolled loop 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 SAXPY(1)