File: dlarrf.l

package info (click to toggle)
lapack 3.0.20000531a-28
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 61,920 kB
  • ctags: 46,200
  • sloc: fortran: 584,835; perl: 8,226; makefile: 2,331; awk: 71; sh: 45
file content (79 lines) | stat: -rwxr-xr-x 2,383 bytes parent folder | download | duplicates (4)
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
.TH DLARRF l "15 June 2000" "LAPACK version 3.0" ")"
.SH NAME
DLARRF - the initial representation L D L^T and its cluster of close eigenvalues (in a relative measure), W( IFIRST ), W( IFIRST+1 ), ..
.SH SYNOPSIS
.TP 19
SUBROUTINE DLARRF(
N, D, L, LD, LLD, IFIRST, ILAST, W, DPLUS,
LPLUS, WORK, IWORK, INFO )
.TP 19
.ti +4
INTEGER
IFIRST, ILAST, INFO, N
.TP 19
.ti +4
INTEGER
IWORK( * )
.TP 19
.ti +4
DOUBLE
PRECISION D( * ), DPLUS( * ), L( * ), LD( * ), LLD( * ),
LPLUS( * ), W( * ), WORK( * )
.SH PURPOSE
Given the initial representation L D L^T and its cluster of close eigenvalues (in a relative measure), W( IFIRST ), W( IFIRST+1 ), ... W( ILAST ), DLARRF finds a new relatively robust representation
L D L^T - SIGMA I = L(+) D(+) L(+)^T such that at least one of the
eigenvalues of L(+) D(+) L(+)^T is relatively isolated.
.br

.SH ARGUMENTS
.TP 8
N       (input) INTEGER
The order of the matrix.
.TP 8
D       (input) DOUBLE PRECISION array, dimension (N)
The n diagonal elements of the diagonal matrix D.
.TP 8
L       (input) DOUBLE PRECISION array, dimension (N-1)
The (n-1) subdiagonal elements of the unit bidiagonal
matrix L.
.TP 8
LD      (input) DOUBLE PRECISION array, dimension (N-1)
The n-1 elements L(i)*D(i).
.TP 8
LLD     (input) DOUBLE PRECISION array, dimension (N-1)
The n-1 elements L(i)*L(i)*D(i).
.TP 8
IFIRST  (input) INTEGER
The index of the first eigenvalue in the cluster.
.TP 8
ILAST   (input) INTEGER
The index of the last eigenvalue in the cluster.
.TP 8
W       (input/output) DOUBLE PRECISION array, dimension (N)
On input, the eigenvalues of L D L^T in ascending order.
W( IFIRST ) through W( ILAST ) form the cluster of relatively
close eigenalues.
On output, W( IFIRST ) thru' W( ILAST ) are estimates of the
corresponding eigenvalues of L(+) D(+) L(+)^T.
.TP 8
SIGMA   (input) DOUBLE PRECISION
The shift used to form L(+) D(+) L(+)^T.
.TP 8
DPLUS   (output) DOUBLE PRECISION array, dimension (N)
The n diagonal elements of the diagonal matrix D(+).
.TP 8
LPLUS   (output) DOUBLE PRECISION array, dimension (N)
The first (n-1) elements of LPLUS contain the subdiagonal
elements of the unit bidiagonal matrix L(+). LPLUS( N ) is
set to SIGMA.
.TP 8
WORK    (input) DOUBLE PRECISION array, dimension (???)
Workspace.
.SH FURTHER DETAILS
Based on contributions by
.br
   Inderjit Dhillon, IBM Almaden, USA
.br
   Osni Marques, LBNL/NERSC, USA
.br