Skip to content

Commit 5fbd5f5

Browse files
authored
Fix typo in description of VR argument (Reference-LAPACK 812)
1 parent 02efa8d commit 5fbd5f5

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

lapack-netlib/SRC/ctgevc.f

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
*>
5454
*> S*x = w*P*x, (y**H)*S = w*(y**H)*P,
5555
*>
56-
*> where y**H denotes the conjugate tranpose of y.
56+
*> where y**H denotes the conjugate transpose of y.
5757
*> The eigenvalues are not input to this routine, but are computed
5858
*> directly from the diagonal elements of S and P.
5959
*>
@@ -154,7 +154,7 @@
154154
*> \verbatim
155155
*> VR is COMPLEX array, dimension (LDVR,MM)
156156
*> On entry, if SIDE = 'R' or 'B' and HOWMNY = 'B', VR must
157-
*> contain an N-by-N matrix Q (usually the unitary matrix Z
157+
*> contain an N-by-N matrix Z (usually the unitary matrix Z
158158
*> of right Schur vectors returned by CHGEQZ).
159159
*> On exit, if SIDE = 'R' or 'B', VR contains:
160160
*> if HOWMNY = 'A', the matrix X of right eigenvectors of (S,P);
@@ -259,7 +259,7 @@ SUBROUTINE CTGEVC( SIDE, HOWMNY, SELECT, N, S, LDS, P, LDP, VL,
259259
EXTERNAL LSAME, SLAMCH, CLADIV
260260
* ..
261261
* .. External Subroutines ..
262-
EXTERNAL CGEMV, SLABAD, XERBLA
262+
EXTERNAL CGEMV, XERBLA
263263
* ..
264264
* .. Intrinsic Functions ..
265265
INTRINSIC ABS, AIMAG, CMPLX, CONJG, MAX, MIN, REAL
@@ -367,7 +367,6 @@ SUBROUTINE CTGEVC( SIDE, HOWMNY, SELECT, N, S, LDS, P, LDP, VL,
367367
*
368368
SAFMIN = SLAMCH( 'Safe minimum' )
369369
BIG = ONE / SAFMIN
370-
CALL SLABAD( SAFMIN, BIG )
371370
ULP = SLAMCH( 'Epsilon' )*SLAMCH( 'Base' )
372371
SMALL = SAFMIN*N / ULP
373372
BIG = ONE / SMALL

lapack-netlib/SRC/ztgevc.f

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
*>
5454
*> S*x = w*P*x, (y**H)*S = w*(y**H)*P,
5555
*>
56-
*> where y**H denotes the conjugate tranpose of y.
56+
*> where y**H denotes the conjugate transpose of y.
5757
*> The eigenvalues are not input to this routine, but are computed
5858
*> directly from the diagonal elements of S and P.
5959
*>
@@ -154,7 +154,7 @@
154154
*> \verbatim
155155
*> VR is COMPLEX*16 array, dimension (LDVR,MM)
156156
*> On entry, if SIDE = 'R' or 'B' and HOWMNY = 'B', VR must
157-
*> contain an N-by-N matrix Q (usually the unitary matrix Z
157+
*> contain an N-by-N matrix Z (usually the unitary matrix Z
158158
*> of right Schur vectors returned by ZHGEQZ).
159159
*> On exit, if SIDE = 'R' or 'B', VR contains:
160160
*> if HOWMNY = 'A', the matrix X of right eigenvectors of (S,P);
@@ -259,7 +259,7 @@ SUBROUTINE ZTGEVC( SIDE, HOWMNY, SELECT, N, S, LDS, P, LDP, VL,
259259
EXTERNAL LSAME, DLAMCH, ZLADIV
260260
* ..
261261
* .. External Subroutines ..
262-
EXTERNAL DLABAD, XERBLA, ZGEMV
262+
EXTERNAL XERBLA, ZGEMV
263263
* ..
264264
* .. Intrinsic Functions ..
265265
INTRINSIC ABS, DBLE, DCMPLX, DCONJG, DIMAG, MAX, MIN
@@ -367,7 +367,6 @@ SUBROUTINE ZTGEVC( SIDE, HOWMNY, SELECT, N, S, LDS, P, LDP, VL,
367367
*
368368
SAFMIN = DLAMCH( 'Safe minimum' )
369369
BIG = ONE / SAFMIN
370-
CALL DLABAD( SAFMIN, BIG )
371370
ULP = DLAMCH( 'Epsilon' )*DLAMCH( 'Base' )
372371
SMALL = SAFMIN*N / ULP
373372
BIG = ONE / SMALL

0 commit comments

Comments
 (0)