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
80
81
82
83
84
85
86
87
88
89
|
*> \brief \b SROTG
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapack/explore-html/
*
* Definition
* ==========
*
* SUBROUTINE SROTG(SA,SB,C,S)
*
* .. Scalar Arguments ..
* REAL C,S,SA,SB
* ..
*
* Purpose
* =======
*
*>\details \b Purpose:
*>\verbatim
*>
*> SROTG construct givens plane rotation.
*>
*>\endverbatim
*
* Authors
* =======
*
*> \author Univ. of Tennessee
*> \author Univ. of California Berkeley
*> \author Univ. of Colorado Denver
*> \author NAG Ltd.
*
*> \date November 2011
*
*> \ingroup single_blas_level1
*
*
* Further Details
* ===============
*>\details \b Further \b Details
*> \verbatim
*>
*> jack dongarra, linpack, 3/11/78.
*>
*> \endverbatim
*>
* =====================================================================
SUBROUTINE SROTG(SA,SB,C,S)
*
* -- Reference BLAS level1 routine (version 3.4.0) --
* -- Reference BLAS is a software package provided by Univ. of Tennessee, --
* -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
* November 2011
*
* .. Scalar Arguments ..
REAL C,S,SA,SB
* ..
*
* =====================================================================
*
* .. Local Scalars ..
REAL R,ROE,SCALE,Z
* ..
* .. Intrinsic Functions ..
INTRINSIC ABS,SIGN,SQRT
* ..
ROE = SB
IF (ABS(SA).GT.ABS(SB)) ROE = SA
SCALE = ABS(SA) + ABS(SB)
IF (SCALE.EQ.0.0) THEN
C = 1.0
S = 0.0
R = 0.0
Z = 0.0
ELSE
R = SCALE*SQRT((SA/SCALE)**2+ (SB/SCALE)**2)
R = SIGN(1.0,ROE)*R
C = SA/R
S = SB/R
Z = 1.0
IF (ABS(SA).GT.ABS(SB)) Z = S
IF (ABS(SB).GE.ABS(SA) .AND. C.NE.0.0) Z = 1.0/C
END IF
SA = R
SB = Z
RETURN
END
|