Skip to content

Commit 303a3ec

Browse files
committed
rotg: add description to doxygen
1 parent bd9bf0b commit 303a3ec

File tree

4 files changed

+32
-36
lines changed

4 files changed

+32
-36
lines changed

BLAS/SRC/crotg.f90

+9-10
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,16 @@
55
! Online html documentation available at
66
! http://www.netlib.org/lapack/explore-html/
77
!
8-
! Definition:
9-
! ===========
10-
!
11-
! CROTG constructs a plane rotation
12-
! [ c s ] [ a ] = [ r ]
13-
! [ -conjg(s) c ] [ b ] [ 0 ]
14-
! where c is real, s is complex, and c**2 + conjg(s)*s = 1.
15-
!
168
!> \par Purpose:
179
! =============
1810
!>
1911
!> \verbatim
2012
!>
13+
!> CROTG constructs a plane rotation
14+
!> [ c s ] [ a ] = [ r ]
15+
!> [ -conjg(s) c ] [ b ] [ 0 ]
16+
!> where c is real, s is complex, and c**2 + conjg(s)*s = 1.
17+
!>
2118
!> The computation uses the formulas
2219
!> |x| = sqrt( Re(x)**2 + Im(x)**2 )
2320
!> sgn(x) = x / |x| if x /= 0
@@ -33,6 +30,8 @@
3330
!> if the signs of a and b are not the same.
3431
!>
3532
!> \endverbatim
33+
!>
34+
!> @see lartg, @see lartgp
3635
!
3736
! Arguments:
3837
! ==========
@@ -181,7 +180,7 @@ subroutine CROTG( a, b, c, s )
181180
f2 = ABSSQ( f )
182181
g2 = ABSSQ( g )
183182
h2 = f2 + g2
184-
! safmin <= f2 <= h2 <= safmax
183+
! safmin <= f2 <= h2 <= safmax
185184
if( f2 >= h2 * safmin ) then
186185
! safmin <= f2/h2 <= 1, and h2/f2 is finite
187186
c = sqrt( f2 / h2 )
@@ -237,7 +236,7 @@ subroutine CROTG( a, b, c, s )
237236
f2 = ABSSQ( fs )
238237
h2 = f2 + g2
239238
end if
240-
! safmin <= f2 <= h2 <= safmax
239+
! safmin <= f2 <= h2 <= safmax
241240
if( f2 >= h2 * safmin ) then
242241
! safmin <= f2/h2 <= 1, and h2/f2 is finite
243242
c = sqrt( f2 / h2 )

BLAS/SRC/drotg.f90

+7-8
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,16 @@
55
! Online html documentation available at
66
! http://www.netlib.org/lapack/explore-html/
77
!
8-
! Definition:
9-
! ===========
10-
!
11-
! DROTG constructs a plane rotation
12-
! [ c s ] [ a ] = [ r ]
13-
! [ -s c ] [ b ] [ 0 ]
14-
! satisfying c**2 + s**2 = 1.
15-
!
168
!> \par Purpose:
179
! =============
1810
!>
1911
!> \verbatim
2012
!>
13+
!> DROTG constructs a plane rotation
14+
!> [ c s ] [ a ] = [ r ]
15+
!> [ -s c ] [ b ] [ 0 ]
16+
!> satisfying c**2 + s**2 = 1.
17+
!>
2118
!> The computation uses the formulas
2219
!> sigma = sgn(a) if |a| > |b|
2320
!> = sgn(b) if |b| >= |a|
@@ -34,6 +31,8 @@
3431
!> If |z| > 1, set c = 1/z and s = sqrt( 1 - c**2).
3532
!>
3633
!> \endverbatim
34+
!>
35+
!> @see lartg, @see lartgp
3736
!
3837
! Arguments:
3938
! ==========

BLAS/SRC/srotg.f90

+7-8
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,16 @@
55
! Online html documentation available at
66
! http://www.netlib.org/lapack/explore-html/
77
!
8-
! Definition:
9-
! ===========
10-
!
11-
! SROTG constructs a plane rotation
12-
! [ c s ] [ a ] = [ r ]
13-
! [ -s c ] [ b ] [ 0 ]
14-
! satisfying c**2 + s**2 = 1.
15-
!
168
!> \par Purpose:
179
! =============
1810
!>
1911
!> \verbatim
2012
!>
13+
!> SROTG constructs a plane rotation
14+
!> [ c s ] [ a ] = [ r ]
15+
!> [ -s c ] [ b ] [ 0 ]
16+
!> satisfying c**2 + s**2 = 1.
17+
!>
2118
!> The computation uses the formulas
2219
!> sigma = sgn(a) if |a| > |b|
2320
!> = sgn(b) if |b| >= |a|
@@ -34,6 +31,8 @@
3431
!> If |z| > 1, set c = 1/z and s = sqrt( 1 - c**2).
3532
!>
3633
!> \endverbatim
34+
!>
35+
!> @see lartg, @see lartgp
3736
!
3837
! Arguments:
3938
! ==========

BLAS/SRC/zrotg.f90

+9-10
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,16 @@
55
! Online html documentation available at
66
! http://www.netlib.org/lapack/explore-html/
77
!
8-
! Definition:
9-
! ===========
10-
!
11-
! ZROTG constructs a plane rotation
12-
! [ c s ] [ a ] = [ r ]
13-
! [ -conjg(s) c ] [ b ] [ 0 ]
14-
! where c is real, s is complex, and c**2 + conjg(s)*s = 1.
15-
!
168
!> \par Purpose:
179
! =============
1810
!>
1911
!> \verbatim
2012
!>
13+
!> ZROTG constructs a plane rotation
14+
!> [ c s ] [ a ] = [ r ]
15+
!> [ -conjg(s) c ] [ b ] [ 0 ]
16+
!> where c is real, s is complex, and c**2 + conjg(s)*s = 1.
17+
!>
2118
!> The computation uses the formulas
2219
!> |x| = sqrt( Re(x)**2 + Im(x)**2 )
2320
!> sgn(x) = x / |x| if x /= 0
@@ -33,6 +30,8 @@
3330
!> if the signs of a and b are not the same.
3431
!>
3532
!> \endverbatim
33+
!>
34+
!> @see lartg, @see lartgp
3635
!
3736
! Arguments:
3837
! ==========
@@ -181,7 +180,7 @@ subroutine ZROTG( a, b, c, s )
181180
f2 = ABSSQ( f )
182181
g2 = ABSSQ( g )
183182
h2 = f2 + g2
184-
! safmin <= f2 <= h2 <= safmax
183+
! safmin <= f2 <= h2 <= safmax
185184
if( f2 >= h2 * safmin ) then
186185
! safmin <= f2/h2 <= 1, and h2/f2 is finite
187186
c = sqrt( f2 / h2 )
@@ -237,7 +236,7 @@ subroutine ZROTG( a, b, c, s )
237236
f2 = ABSSQ( fs )
238237
h2 = f2 + g2
239238
end if
240-
! safmin <= f2 <= h2 <= safmax
239+
! safmin <= f2 <= h2 <= safmax
241240
if( f2 >= h2 * safmin ) then
242241
! safmin <= f2/h2 <= 1, and h2/f2 is finite
243242
c = sqrt( f2 / h2 )

0 commit comments

Comments
 (0)