Imported upstream version 1.5
[manpages-zh.git] / raw / manl / zdrscl.l
blobaa984c3db696690eb76255ae8717938460066772
1 .TH ZDRSCL l "15 June 2000" "LAPACK version 3.0" ")"
2 .SH NAME
3 ZDRSCL - multiplie an n-element complex vector x by the real scalar 1/a
4 .SH SYNOPSIS
5 .TP 19
6 SUBROUTINE ZDRSCL(
7 N, SA, SX, INCX )
8 .TP 19
9 .ti +4
10 INTEGER
11 INCX, N
12 .TP 19
13 .ti +4
14 DOUBLE
15 PRECISION SA
16 .TP 19
17 .ti +4
18 COMPLEX*16
19 SX( * )
20 .SH PURPOSE
21 ZDRSCL multiplies an n-element complex vector x by the real scalar 1/a. This is done without overflow or underflow as long as the final result x/a does not overflow or underflow.
22 .br
24 .SH ARGUMENTS
25 .TP 8
26 N       (input) INTEGER
27 The number of components of the vector x.
28 .TP 8
29 SA      (input) DOUBLE PRECISION
30 The scalar a which is used to divide each component of x.
31 SA must be >= 0, or the subroutine will divide by zero.
32 .TP 8
33 SX      (input/output) COMPLEX*16 array, dimension
34 (1+(N-1)*abs(INCX))
35 The n-element vector x.
36 .TP 8
37 INCX    (input) INTEGER
38 The increment between successive values of the vector SX.
39 > 0:  SX(1) = X(1) and SX(1+(i-1)*INCX) = x(i),     1< i<= n