1SLARZ(1) LAPACK routine (version 3.1) SLARZ(1)
2
3
4
6 SLARZ - a real elementary reflector H to a real M-by-N matrix C, from
7 either the left or the right
8
10 SUBROUTINE SLARZ( SIDE, M, N, L, V, INCV, TAU, C, LDC, WORK )
11
12 CHARACTER SIDE
13
14 INTEGER INCV, L, LDC, M, N
15
16 REAL TAU
17
18 REAL C( LDC, * ), V( * ), WORK( * )
19
21 SLARZ applies a real elementary reflector H to a real M-by-N matrix C,
22 from either the left or the right. H is represented in the form
23
24 H = I - tau * v * v'
25
26 where tau is a real scalar and v is a real vector.
27
28 If tau = 0, then H is taken to be the unit matrix.
29
30
31 H is a product of k elementary reflectors as returned by STZRZF.
32
33
35 SIDE (input) CHARACTER*1
36 = 'L': form H * C
37 = 'R': form C * H
38
39 M (input) INTEGER
40 The number of rows of the matrix C.
41
42 N (input) INTEGER
43 The number of columns of the matrix C.
44
45 L (input) INTEGER
46 The number of entries of the vector V containing the meaningful
47 part of the Householder vectors. If SIDE = 'L', M >= L >= 0,
48 if SIDE = 'R', N >= L >= 0.
49
50 V (input) REAL array, dimension (1+(L-1)*abs(INCV))
51 The vector v in the representation of H as returned by STZRZF.
52 V is not used if TAU = 0.
53
54 INCV (input) INTEGER
55 The increment between elements of v. INCV <> 0.
56
57 TAU (input) REAL
58 The value tau in the representation of H.
59
60 C (input/output) REAL array, dimension (LDC,N)
61 On entry, the M-by-N matrix C. On exit, C is overwritten by
62 the matrix H * C if SIDE = 'L', or C * H if SIDE = 'R'.
63
64 LDC (input) INTEGER
65 The leading dimension of the array C. LDC >= max(1,M).
66
67 WORK (workspace) REAL array, dimension
68 (N) if SIDE = 'L' or (M) if SIDE = 'R'
69
71 Based on contributions by
72 A. Petitet, Computer Science Dept., Univ. of Tenn., Knoxville, USA
73
74
75
76
77 LAPACK routine (version 3.1) November 2006 SLARZ(1)