@@ -20,20 +20,20 @@ SUBROUTINE CGBBRD( VECT, M, N, NCC, KL, KU, AB, LDAB, D, E, Q,
2020* =======
2121*
2222* CGBBRD reduces a complex general m-by-n band matrix A to real upper
23- * bidiagonal form B by a unitary transformation: Q' * A * P = B.
23+ * bidiagonal form B by a unitary transformation: Q**H * A * P = B.
2424*
25- * The routine computes B, and optionally forms Q or P' , or computes
26- * Q' *C for a given matrix C.
25+ * The routine computes B, and optionally forms Q or P**H , or computes
26+ * Q**H *C for a given matrix C.
2727*
2828* Arguments
2929* =========
3030*
3131* VECT (input) CHARACTER*1
32- * Specifies whether or not the matrices Q and P' are to be
32+ * Specifies whether or not the matrices Q and P**H are to be
3333* formed.
34- * = 'N': do not form Q or P' ;
34+ * = 'N': do not form Q or P**H ;
3535* = 'Q': form Q only;
36- * = 'P': form P' only;
36+ * = 'P': form P**H only;
3737* = 'B': form both.
3838*
3939* M (input) INTEGER
@@ -86,7 +86,7 @@ SUBROUTINE CGBBRD( VECT, M, N, NCC, KL, KU, AB, LDAB, D, E, Q,
8686*
8787* C (input/output) COMPLEX array, dimension (LDC,NCC)
8888* On entry, an m-by-ncc matrix C.
89- * On exit, C is overwritten by Q' *C.
89+ * On exit, C is overwritten by Q**H *C.
9090* C is not referenced if NCC = 0.
9191*
9292* LDC (input) INTEGER
@@ -165,7 +165,7 @@ SUBROUTINE CGBBRD( VECT, M, N, NCC, KL, KU, AB, LDAB, D, E, Q,
165165 RETURN
166166 END IF
167167*
168- * Initialize Q and P' to the unit matrix, if needed
168+ * Initialize Q and P**H to the unit matrix, if needed
169169*
170170 IF ( WANTQ )
171171 $ CALL CLASET( ' Full' , M, M, CZERO, CONE, Q, LDQ )
@@ -338,7 +338,7 @@ SUBROUTINE CGBBRD( VECT, M, N, NCC, KL, KU, AB, LDAB, D, E, Q,
338338*
339339 IF ( WANTPT ) THEN
340340*
341- * accumulate product of plane rotations in P'
341+ * accumulate product of plane rotations in P**H
342342*
343343 DO 60 J = J1, J2, KB1
344344 CALL CROT( N, PT( J+ KUN-1 , 1 ), LDPT,
0 commit comments