table of contents
other versions
- wheezy 3.4.1+dfsg-1+deb70u1
- jessie 3.5.0-4
- jessie-backports 3.7.0-1~bpo8+1
- testing 3.7.0-2
- unstable 3.7.0-2
| slaed6.f(3) | LAPACK | slaed6.f(3) |
NAME¶
slaed6.f -SYNOPSIS¶
Functions/Subroutines¶
subroutine slaed6 (KNITER, ORGATI, RHO, D, Z, FINIT, TAU, INFO)
Function/Subroutine Documentation¶
subroutine slaed6 (integerKNITER, logicalORGATI, realRHO, real, dimension( 3 )D, real, dimension( 3 )Z, realFINIT, realTAU, integerINFO)¶
SLAED6 Purpose: SLAED6 computes the positive or negative root (closest to the origin)
of
z(1) z(2) z(3)
f(x) = rho + --------- + ---------- + ---------
d(1)-x d(2)-x d(3)-x
It is assumed that
if ORGATI = .true. the root is between d(2) and d(3);
otherwise it is between d(1) and d(2)
This routine will be called by SLAED4 when necessary. In most cases,
the root sought is the smallest in magnitude, though it might not be
in some extremely rare situations.
KNITER
ORGATI
RHO
D
Z
FINIT
TAU
INFO
Author:
KNITER is INTEGER
Refer to SLAED4 for its significance.
ORGATI is LOGICAL
If ORGATI is true, the needed root is between d(2) and
d(3); otherwise it is between d(1) and d(2). See
SLAED4 for further details.
RHO is REAL
Refer to the equation f(x) above.
D is REAL array, dimension (3)
D satisfies d(1) < d(2) < d(3).
Z is REAL array, dimension (3)
Each of the elements in z must be positive.
FINIT is REAL
The value of f at 0. It is more accurate than the one
evaluated inside this routine (if someone wants to do
so).
TAU is REAL
The root of the equation f(x).
INFO is INTEGER
= 0: successful exit
> 0: if INFO = 1, failure to converge
Univ. of Tennessee
Univ. of California Berkeley
Univ. of Colorado Denver
NAG Ltd.
Date:
April 2012
Further Details:
10/02/03: This version has a few statements commented out for thread
safety (machine parameters are computed on each entry). SJH.
05/10/06: Modified from a new version of Ren-Cang Li, use
Gragg-Thornton-Warner cubic convergent scheme for better stability.
Ren-Cang Li, Computer Science Division,
University of California at Berkeley, USA
Author¶
Generated automatically by Doxygen for LAPACK from the source code.| Sun May 26 2013 | Version 3.4.1 |