1SAXPY(1) BLAS routine SAXPY(1)
23
4
NAME
6SAXPY - SAXPY 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.
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 SAXPY(1)