dlaqr5.f (3) Linux Manual Page
dlaqr5.f –
Synopsis
Functions/Subroutines
subroutine dlaqr5 (WANTT, WANTZ, KACC22, N, KTOP, KBOT, NSHFTS, SR, SI, H, LDH, ILOZ, IHIZ, Z, LDZ, V, LDV, U, LDU, NV, WV, LDWV, NH, WH, LDWH)DLAQR5 performs a single small-bulge multi-shift QR sweep.
Function/Subroutine Documentation
subroutine dlaqr5 (logicalWANTT, logicalWANTZ, integerKACC22, integerN, integerKTOP, integerKBOT, integerNSHFTS, double precision, dimension( * )SR, double precision, dimension( * )SI, double precision, dimension( ldh, * )H, integerLDH, integerILOZ, integerIHIZ, double precision, dimension( ldz, * )Z, integerLDZ, double precision, dimension( ldv, * )V, integerLDV, double precision, dimension( ldu, * )U, integerLDU, integerNV, double precision, dimension( ldwv, * )WV, integerLDWV, integerNH, double precision, dimension( ldwh, * )WH, integerLDWH)
DLAQR5 performs a single small-bulge multi-shift QR sweep. Purpose:
DLAQR5, called by DLAQR0, performs a
single small-bulge multi-shift QR sweep.
Parameters:
- WANTT
WANTT is logical scalar
WANTZ
WANTT = .true. if the quasi-triangular Schur factor
is being computed. WANTT is set to .false. otherwise.WANTZ is logical scalar
KACC22
WANTZ = .true. if the orthogonal Schur factor is being
computed. WANTZ is set to .false. otherwise.KACC22 is integer with value 0, 1, or 2.
N
Specifies the computation mode of far-from-diagonal
orthogonal updates.
= 0: DLAQR5 does not accumulate reflections and does not
use matrix-matrix multiply to update far-from-diagonal
matrix entries.
= 1: DLAQR5 accumulates reflections and uses matrix-matrix
multiply to update the far-from-diagonal matrix entries.
= 2: DLAQR5 accumulates reflections, uses matrix-matrix
multiply to update the far-from-diagonal matrix entries,
and takes advantage of 2-by-2 block structure during
matrix multiplies.N is integer scalar
KTOP
N is the order of the Hessenberg matrix H upon which this
subroutine operates.KTOP is integer scalar
KBOTKBOT is integer scalar
NSHFTS
These are the first and last rows and columns of an
isolated diagonal block upon which the QR sweep is to be
applied. It is assumed without a check that
either KTOP = 1 or H(KTOP,KTOP-1) = 0
and
either KBOT = N or H(KBOT+1,KBOT) = 0.NSHFTS is integer scalar
SR
NSHFTS gives the number of simultaneous shifts. NSHFTS
must be positive and even.SR is DOUBLE PRECISION array of size (NSHFTS)
SISI is DOUBLE PRECISION array of size (NSHFTS)
H
SR contains the real parts and SI contains the imaginary
parts of the NSHFTS shifts of origin that define the
multi-shift QR sweep. On output SR and SI may be
reordered.H is DOUBLE PRECISION array of size (LDH,N)
LDH
On input H contains a Hessenberg matrix. On output a
multi-shift QR sweep with shifts SR(J)+i*SI(J) is applied
to the isolated diagonal block in rows and columns KTOP
through KBOT.LDH is integer scalar
ILOZ
LDH is the leading dimension of H just as declared in the
calling procedure. LDH.GE.MAX(1,N).ILOZ is INTEGER
IHIZIHIZ is INTEGER
Z
Specify the rows of Z to which transformations must be
applied if WANTZ is .TRUE.. 1 .LE. ILOZ .LE. IHIZ .LE. NZ is DOUBLE PRECISION array of size (LDZ,IHI)
LDZ
If WANTZ = .TRUE., then the QR Sweep orthogonal
similarity transformation is accumulated into
Z(ILOZ:IHIZ,ILO:IHI) from the right.
If WANTZ = .FALSE., then Z is unreferenced.LDZ is integer scalar
V
LDA is the leading dimension of Z just as declared in
the calling procedure. LDZ.GE.N.V is DOUBLE PRECISION array of size (LDV,NSHFTS/2)
LDVLDV is integer scalar
U
LDV is the leading dimension of V as declared in the
calling procedure. LDV.GE.3.U is DOUBLE PRECISION array of size
LDU
(LDU,3*NSHFTS-3)LDU is integer scalar
NH
LDU is the leading dimension of U just as declared in the
in the calling subroutine. LDU.GE.3*NSHFTS-3.NH is integer scalar
WH
NH is the number of columns in array WH available for
workspace. NH.GE.1.WH is DOUBLE PRECISION array of size (LDWH,NH)
LDWHLDWH is integer scalar
NV
Leading dimension of WH just as declared in the
calling procedure. LDWH.GE.3*NSHFTS-3.NV is integer scalar
WV
NV is the number of rows in WV agailable for workspace.
NV.GE.1.WV is DOUBLE PRECISION array of size
LDWV
(LDWV,3*NSHFTS-3)LDWV is integer scalar
LDWV is the leading dimension of WV as declared in the
in the calling subroutine. LDWV.GE.NV.
Author:
- Univ. of Tennessee
Univ. of California Berkeley
Univ. of Colorado Denver
NAG Ltd.
Date:
- September 2012
Contributors:
- Karen Braman and Ralph Byers, Department of Mathematics, University of Kansas, USA
References:
- K. Braman, R. Byers and R. Mathias, The Multi-Shift QR Algorithm Part I: Maintaining Well Focused Shifts, and Level 3 Performance, SIAM Journal of Matrix Analysis, volume 23, pages 929–947, 2002.
Definition at line 258 of file dlaqr5.f.
