Skip to content

Commit 0b0dcee

Browse files
authored
Merge pull request #160 from thielema/cleanup-comments
more cleaned up comments
2 parents a3fb05f + bd1af2e commit 0b0dcee

67 files changed

Lines changed: 140 additions & 148 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

SRC/cgebd2.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@
100100
*>
101101
*> \param[out] TAUQ
102102
*> \verbatim
103-
*> TAUQ is COMPLEX array dimension (min(M,N))
103+
*> TAUQ is COMPLEX array, dimension (min(M,N))
104104
*> The scalar factors of the elementary reflectors which
105105
*> represent the unitary matrix Q. See Further Details.
106106
*> \endverbatim

SRC/cgebrd.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@
102102
*>
103103
*> \param[out] TAUQ
104104
*> \verbatim
105-
*> TAUQ is COMPLEX array dimension (min(M,N))
105+
*> TAUQ is COMPLEX array, dimension (min(M,N))
106106
*> The scalar factors of the elementary reflectors which
107107
*> represent the unitary matrix Q. See Further Details.
108108
*> \endverbatim

SRC/cgesvj.f

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
*
5353
*> \param[in] JOBA
5454
*> \verbatim
55-
*> JOBA is CHARACTER* 1
55+
*> JOBA is CHARACTER*1
5656
*> Specifies the structure of A.
5757
*> = 'L': The input matrix A is lower triangular;
5858
*> = 'U': The input matrix A is upper triangular;
@@ -206,7 +206,7 @@
206206
*>
207207
*> \param[in,out] CWORK
208208
*> \verbatim
209-
*> CWORK is COMPLEX array, dimension max(1,LWORK).
209+
*> CWORK is COMPLEX array, dimension (max(1,LWORK))
210210
*> Used as workspace.
211211
*> If on entry LWORK .EQ. -1, then a workspace query is assumed and
212212
*> no computation is done; CWORK(1) is set to the minial (and optimal)
@@ -221,7 +221,7 @@
221221
*>
222222
*> \param[in,out] RWORK
223223
*> \verbatim
224-
*> RWORK is REAL array, dimension max(6,LRWORK).
224+
*> RWORK is REAL array, dimension (max(6,LRWORK))
225225
*> On entry,
226226
*> If JOBU .EQ. 'C' :
227227
*> RWORK(1) = CTOL, where CTOL defines the threshold for convergence.

SRC/cla_heamv.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@
8989
*>
9090
*> \param[in] A
9191
*> \verbatim
92-
*> A is COMPLEX array of DIMENSION ( LDA, n ).
92+
*> A is COMPLEX array, dimension ( LDA, n ).
9393
*> Before entry, the leading m by n part of the array A must
9494
*> contain the matrix of coefficients.
9595
*> Unchanged on exit.

SRC/cla_syamv.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@
9090
*>
9191
*> \param[in] A
9292
*> \verbatim
93-
*> A is COMPLEX array of DIMENSION ( LDA, n ).
93+
*> A is COMPLEX array, dimension ( LDA, n ).
9494
*> Before entry, the leading m by n part of the array A must
9595
*> contain the matrix of coefficients.
9696
*> Unchanged on exit.

SRC/clabrd.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@
111111
*>
112112
*> \param[out] TAUQ
113113
*> \verbatim
114-
*> TAUQ is COMPLEX array dimension (NB)
114+
*> TAUQ is COMPLEX array, dimension (NB)
115115
*> The scalar factors of the elementary reflectors which
116116
*> represent the unitary matrix Q. See Further Details.
117117
*> \endverbatim

SRC/claqr1.f

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
*>
5757
*> \param[in] H
5858
*> \verbatim
59-
*> H is COMPLEX array of dimension (LDH,N)
59+
*> H is COMPLEX array, dimension (LDH,N)
6060
*> The 2-by-2 or 3-by-3 matrix H in (*).
6161
*> \endverbatim
6262
*>
@@ -81,7 +81,7 @@
8181
*>
8282
*> \param[out] V
8383
*> \verbatim
84-
*> V is COMPLEX array of dimension N
84+
*> V is COMPLEX array, dimension (N)
8585
*> A scalar multiple of the first column of the
8686
*> matrix K in (*).
8787
*> \endverbatim

SRC/claqr5.f

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -47,14 +47,14 @@
4747
*
4848
*> \param[in] WANTT
4949
*> \verbatim
50-
*> WANTT is logical scalar
50+
*> WANTT is LOGICAL
5151
*> WANTT = .true. if the triangular Schur factor
5252
*> is being computed. WANTT is set to .false. otherwise.
5353
*> \endverbatim
5454
*>
5555
*> \param[in] WANTZ
5656
*> \verbatim
57-
*> WANTZ is logical scalar
57+
*> WANTZ is LOGICAL
5858
*> WANTZ = .true. if the unitary Schur factor is being
5959
*> computed. WANTZ is set to .false. otherwise.
6060
*> \endverbatim
@@ -107,14 +107,14 @@
107107
*>
108108
*> \param[in,out] S
109109
*> \verbatim
110-
*> S is COMPLEX array of size (NSHFTS)
110+
*> S is COMPLEX array, dimension (NSHFTS)
111111
*> S contains the shifts of origin that define the multi-
112112
*> shift QR sweep. On output S may be reordered.
113113
*> \endverbatim
114114
*>
115115
*> \param[in,out] H
116116
*> \verbatim
117-
*> H is COMPLEX array of size (LDH,N)
117+
*> H is COMPLEX array, dimension (LDH,N)
118118
*> On input H contains a Hessenberg matrix. On output a
119119
*> multi-shift QR sweep with shifts SR(J)+i*SI(J) is applied
120120
*> to the isolated diagonal block in rows and columns KTOP
@@ -142,7 +142,7 @@
142142
*>
143143
*> \param[in,out] Z
144144
*> \verbatim
145-
*> Z is COMPLEX array of size (LDZ,IHIZ)
145+
*> Z is COMPLEX array, dimension (LDZ,IHIZ)
146146
*> If WANTZ = .TRUE., then the QR Sweep unitary
147147
*> similarity transformation is accumulated into
148148
*> Z(ILOZ:IHIZ,ILOZ:IHIZ) from the right.
@@ -158,7 +158,7 @@
158158
*>
159159
*> \param[out] V
160160
*> \verbatim
161-
*> V is COMPLEX array of size (LDV,NSHFTS/2)
161+
*> V is COMPLEX array, dimension (LDV,NSHFTS/2)
162162
*> \endverbatim
163163
*>
164164
*> \param[in] LDV
@@ -170,8 +170,7 @@
170170
*>
171171
*> \param[out] U
172172
*> \verbatim
173-
*> U is COMPLEX array of size
174-
*> (LDU,3*NSHFTS-3)
173+
*> U is COMPLEX array, dimension (LDU,3*NSHFTS-3)
175174
*> \endverbatim
176175
*>
177176
*> \param[in] LDU
@@ -190,7 +189,7 @@
190189
*>
191190
*> \param[out] WH
192191
*> \verbatim
193-
*> WH is COMPLEX array of size (LDWH,NH)
192+
*> WH is COMPLEX array, dimension (LDWH,NH)
194193
*> \endverbatim
195194
*>
196195
*> \param[in] LDWH
@@ -209,8 +208,7 @@
209208
*>
210209
*> \param[out] WV
211210
*> \verbatim
212-
*> WV is COMPLEX array of size
213-
*> (LDWV,3*NSHFTS-3)
211+
*> WV is COMPLEX array, dimension (LDWV,3*NSHFTS-3)
214212
*> \endverbatim
215213
*>
216214
*> \param[in] LDWV

SRC/clarrv.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@
199199
*>
200200
*> \param[out] Z
201201
*> \verbatim
202-
*> Z is array, dimension (LDZ, max(1,M) )
202+
*> Z is COMPLEX array, dimension (LDZ, max(1,M) )
203203
*> If INFO = 0, the first M columns of Z contain the
204204
*> orthonormal eigenvectors of the matrix T
205205
*> corresponding to the input eigenvalues, with the i-th

SRC/cstegr.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@
184184
*>
185185
*> \param[out] ISUPPZ
186186
*> \verbatim
187-
*> ISUPPZ is INTEGER ARRAY, dimension ( 2*max(1,M) )
187+
*> ISUPPZ is INTEGER array, dimension ( 2*max(1,M) )
188188
*> The support of the eigenvectors in Z, i.e., the indices
189189
*> indicating the nonzero elements in Z. The i-th computed eigenvector
190190
*> is nonzero only in elements ISUPPZ( 2*i-1 ) through

0 commit comments

Comments
 (0)