1SORGTR(1) LAPACK routine (version 3.2) SORGTR(1)
2
3
4
6 SORGTR - generates a real orthogonal matrix Q which is defined as the
7 product of n-1 elementary reflectors of order N, as returned by SSYTRD
8
10 SUBROUTINE SORGTR( UPLO, N, A, LDA, TAU, WORK, LWORK, INFO )
11
12 CHARACTER UPLO
13
14 INTEGER INFO, LDA, LWORK, N
15
16 REAL A( LDA, * ), TAU( * ), WORK( * )
17
19 SORGTR generates a real orthogonal matrix Q which is defined as the
20 product of n-1 elementary reflectors of order N, as returned by SSYTRD:
21 if UPLO = 'U', Q = H(n-1) . . . H(2) H(1),
22 if UPLO = 'L', Q = H(1) H(2) . . . H(n-1).
23
25 UPLO (input) CHARACTER*1
26 = 'U': Upper triangle of A contains elementary reflectors from
27 SSYTRD; = 'L': Lower triangle of A contains elementary reflec‐
28 tors from SSYTRD.
29
30 N (input) INTEGER
31 The order of the matrix Q. N >= 0.
32
33 A (input/output) REAL array, dimension (LDA,N)
34 On entry, the vectors which define the elementary reflectors,
35 as returned by SSYTRD. On exit, the N-by-N orthogonal matrix
36 Q.
37
38 LDA (input) INTEGER
39 The leading dimension of the array A. LDA >= max(1,N).
40
41 TAU (input) REAL array, dimension (N-1)
42 TAU(i) must contain the scalar factor of the elementary reflec‐
43 tor H(i), as returned by SSYTRD.
44
45 WORK (workspace/output) REAL array, dimension (MAX(1,LWORK))
46 On exit, if INFO = 0, WORK(1) returns the optimal LWORK.
47
48 LWORK (input) INTEGER
49 The dimension of the array WORK. LWORK >= max(1,N-1). For
50 optimum performance LWORK >= (N-1)*NB, where NB is the optimal
51 blocksize. If LWORK = -1, then a workspace query is assumed;
52 the routine only calculates the optimal size of the WORK array,
53 returns this value as the first entry of the WORK array, and no
54 error message related to LWORK is issued by XERBLA.
55
56 INFO (output) INTEGER
57 = 0: successful exit
58 < 0: if INFO = -i, the i-th argument had an illegal value
59
60
61
62 LAPACK routine (version 3.2) November 2008 SORGTR(1)