LAPACK  3.6.1
LAPACK: Linear Algebra PACKage
subroutine zdscal ( integer  N,
double precision  DA,
complex*16, dimension(*)  ZX,
integer  INCX 
)

ZDSCAL

Purpose:
    ZDSCAL scales a vector by a constant.
Author
Univ. of Tennessee
Univ. of California Berkeley
Univ. of Colorado Denver
NAG Ltd.
Date
November 2011
Further Details:
     jack dongarra, 3/11/78.
     modified 3/93 to return if incx .le. 0.
     modified 12/3/93, array(1) declarations changed to array(*)

Definition at line 54 of file zdscal.f.

54 *
55 * -- Reference BLAS level1 routine (version 3.4.0) --
56 * -- Reference BLAS is a software package provided by Univ. of Tennessee, --
57 * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
58 * November 2011
59 *
60 * .. Scalar Arguments ..
61  DOUBLE PRECISION da
62  INTEGER incx,n
63 * ..
64 * .. Array Arguments ..
65  COMPLEX*16 zx(*)
66 * ..
67 *
68 * =====================================================================
69 *
70 * .. Local Scalars ..
71  INTEGER i,nincx
72 * ..
73 * .. Intrinsic Functions ..
74  INTRINSIC dcmplx
75 * ..
76  IF (n.LE.0 .OR. incx.LE.0) RETURN
77  IF (incx.EQ.1) THEN
78 *
79 * code for increment equal to 1
80 *
81  DO i = 1,n
82  zx(i) = dcmplx(da,0.0d0)*zx(i)
83  END DO
84  ELSE
85 *
86 * code for increment not equal to 1
87 *
88  nincx = n*incx
89  DO i = 1,nincx,incx
90  zx(i) = dcmplx(da,0.0d0)*zx(i)
91  END DO
92  END IF
93  RETURN