1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
SUBROUTINE ZLARSCL2 ( M, N, D, X, LDX )
*
* -- LAPACK routine (version 3.2) --
* -- Contributed by James Demmel, Deaglan Halligan, Yozo Hida and --
* -- Jason Riedy of Univ. of California Berkeley. --
* -- November 2008 --
*
* -- LAPACK is a software package provided by Univ. of Tennessee, --
* -- Univ. of California Berkeley and NAG Ltd. --
*
IMPLICIT NONE
* ..
* .. Scalar Arguments ..
INTEGER M, N, LDX
* ..
* .. Array Arguments ..
COMPLEX*16 X( LDX, * )
DOUBLE PRECISION D( * )
* ..
*
* Purpose
* =======
*
* ZLARSCL2 performs a reciprocal diagonal scaling on an vector:
* x <-- inv(D) * x
* where the DOUBLE PRECISION diagonal matrix D is stored as a vector.
*
* Eventually to be replaced by BLAS_zge_diag_scale in the new BLAS
* standard.
*
* Arguments
* =========
*
* M (input) INTEGER
* The number of rows of D and X. M >= 0.
*
* N (input) INTEGER
* The number of columns of D and X. N >= 0.
*
* D (input) DOUBLE PRECISION array, length M
* Diagonal matrix D, stored as a vector of length M.
*
* X (input/output) COMPLEX*16 array, dimension (LDX,N)
* On entry, the vector X to be scaled by D.
* On exit, the scaled vector.
*
* LDX (input) INTEGER
* The leading dimension of the vector X. LDX >= 0.
*
* =====================================================================
*
* .. Local Scalars ..
INTEGER I, J
* ..
* .. Executable Statements ..
*
DO J = 1, N
DO I = 1, M
X( I, J ) = X( I, J ) / D( I )
END DO
END DO
RETURN
END
|