Skip to content

Commit

Permalink
Merge pull request #626 from Reference-LAPACK/typo_in__rotg_from_jim
Browse files Browse the repository at this point in the history
fix a typo, thanks to Jim Demmel for letting me know
  • Loading branch information
langou authored Oct 9, 2021
2 parents 38f3eee + 70b8ee2 commit 5d4180c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion BLAS/SRC/crotg.f90
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
! CROTG constructs a plane rotation
! [ c s ] [ a ] = [ r ]
! [ -conjg(s) c ] [ b ] [ 0 ]
! where c is real, s ic complex, and c**2 + conjg(s)*s = 1.
! where c is real, s is complex, and c**2 + conjg(s)*s = 1.
!
!> \par Purpose:
! =============
Expand Down
2 changes: 1 addition & 1 deletion BLAS/SRC/zrotg.f90
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
! ZROTG constructs a plane rotation
! [ c s ] [ a ] = [ r ]
! [ -conjg(s) c ] [ b ] [ 0 ]
! where c is real, s ic complex, and c**2 + conjg(s)*s = 1.
! where c is real, s is complex, and c**2 + conjg(s)*s = 1.
!
!> \par Purpose:
! =============
Expand Down

0 comments on commit 5d4180c

Please sign in to comment.