LAPACK
3.9.0
LAPACK: Linear Algebra PACKage
crotg.f
Go to the documentation of this file.
1
*> \brief \b CROTG
2
*
3
* =========== DOCUMENTATION ===========
4
*
5
* Online html documentation available at
6
* http://www.netlib.org/lapack/explore-html/
7
*
8
* Definition:
9
* ===========
10
*
11
* SUBROUTINE CROTG(CA,CB,C,S)
12
*
13
* .. Scalar Arguments ..
14
* COMPLEX CA,CB,S
15
* REAL C
16
* ..
17
*
18
*
19
*> \par Purpose:
20
* =============
21
*>
22
*> \verbatim
23
*>
24
*> CROTG determines a complex Givens rotation.
25
*> \endverbatim
26
*
27
* Arguments:
28
* ==========
29
*
30
*> \param[in] CA
31
*> \verbatim
32
*> CA is COMPLEX
33
*> \endverbatim
34
*>
35
*> \param[in] CB
36
*> \verbatim
37
*> CB is COMPLEX
38
*> \endverbatim
39
*>
40
*> \param[out] C
41
*> \verbatim
42
*> C is REAL
43
*> \endverbatim
44
*>
45
*> \param[out] S
46
*> \verbatim
47
*> S is COMPLEX
48
*> \endverbatim
49
*
50
* Authors:
51
* ========
52
*
53
*> \author Univ. of Tennessee
54
*> \author Univ. of California Berkeley
55
*> \author Univ. of Colorado Denver
56
*> \author NAG Ltd.
57
*
58
*> \date November 2017
59
*
60
*> \ingroup complex_blas_level1
61
*
62
* =====================================================================
63
SUBROUTINE
crotg
(CA,CB,C,S)
64
*
65
* -- Reference BLAS level1 routine (version 3.8.0) --
66
* -- Reference BLAS is a software package provided by Univ. of Tennessee, --
67
* -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
68
* November 2017
69
*
70
* .. Scalar Arguments ..
71
COMPLEX
CA,CB,S
72
REAL
C
73
* ..
74
*
75
* =====================================================================
76
*
77
* .. Local Scalars ..
78
COMPLEX
ALPHA
79
REAL
NORM,SCALE
80
* ..
81
* .. Intrinsic Functions ..
82
INTRINSIC
cabs,conjg,sqrt
83
* ..
84
IF
(cabs(ca).EQ.0.)
THEN
85
c = 0.
86
s = (1.,0.)
87
ca = cb
88
ELSE
89
scale = cabs(ca) + cabs(cb)
90
norm = scale*sqrt((cabs(ca/scale))**2+ (cabs(cb/scale))**2)
91
alpha = ca/cabs(ca)
92
c = cabs(ca)/norm
93
s = alpha*conjg(cb)/norm
94
ca = alpha*norm
95
END IF
96
RETURN
97
END
crotg
subroutine crotg(CA, CB, C, S)
CROTG
Definition:
crotg.f:64
BLAS
SRC
crotg.f
Generated on Wed May 5 2021 15:10:29 for LAPACK by
1.8.16