kblas_saxpy - add two float vectors while scaling one
LIBRARY CALL
void kblas_sscal(
float *sx,
float *sy,
float sa,
int n,
int incx,
int incy)
INPUT
none
OUTPUT
none
RETURN VALUE
none
DESCRIPTION
This routine multiplies a vector by a constant
and then adds it to another vector. The calculation
will be : SY = SY + sa*SX
It uses unrolled loops to improve performance
for increments == 1. The computation is done in place
and returned in sy.
ADDITIONAL INFORMATION
none
EXAMPLES
none
SIDE EFFECTS
none
RESTRICTIONS
none
MODIFICATION
none
FILES
$BOOTSTRAP/objects/library/klibm/src/flin.c
SEE ALSO
klibm(3)
COPYRIGHT
Copyright (C) 1993 - 1997, Khoral Research, Inc. ("KRI") All rights reserved.