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
|
.TH SLAS2 l "15 June 2000" "LAPACK version 3.0" ")"
.SH NAME
SLAS2 - compute the singular values of the 2-by-2 matrix [ F G ] [ 0 H ]
.SH SYNOPSIS
.TP 18
SUBROUTINE SLAS2(
F, G, H, SSMIN, SSMAX )
.TP 18
.ti +4
REAL
F, G, H, SSMAX, SSMIN
.SH PURPOSE
SLAS2 computes the singular values of the 2-by-2 matrix [ F G ] [ 0 H ]. On return, SSMIN is the smaller singular value and SSMAX is the
larger singular value.
.br
.SH ARGUMENTS
.TP 8
F (input) REAL
The (1,1) element of the 2-by-2 matrix.
.TP 8
G (input) REAL
The (1,2) element of the 2-by-2 matrix.
.TP 8
H (input) REAL
The (2,2) element of the 2-by-2 matrix.
.TP 8
SSMIN (output) REAL
The smaller singular value.
.TP 8
SSMAX (output) REAL
The larger singular value.
.SH FURTHER DETAILS
Barring over/underflow, all output quantities are correct to within
a few units in the last place (ulps), even in the absence of a guard
digit in addition/subtraction.
.br
In IEEE arithmetic, the code works correctly if one matrix element is
infinite.
.br
Overflow will not occur unless the largest singular value itself
overflows, or is within a few ulps of overflow. (On machines with
partial overflow, like the Cray, overflow may occur if the largest
singular value is within a factor of 2 of overflow.)
.br
Underflow is harmless if underflow is gradual. Otherwise, results
may correspond to a matrix modified by perturbations of size near
the underflow threshold.
.br
|