1 subroutine zscal
(n
,za
,zx
,incx
)
3 c scales a vector by a constant.
4 c jack dongarra, 3/11/78.
5 c modified 3/93 to return if incx .le. 0.
6 c modified 12/3/93, array(1) declarations changed to array(*)
8 double complex za
,zx
(*)
11 if( n
.le
.0 .or
. incx
.le
.0 )return
14 c code for increment not equal to 1
23 c code for increment equal to 1