@@ -120,8 +120,8 @@ impl<T: ComplexField, R: Dim, C: Dim, S: Storage<T, R, C>> Matrix<T, R, C, S> {
120
120
/// * `compute_v` − set this to `true` to enable the computation of right-singular vectors.
121
121
/// * `eps` − tolerance used to determine when a value converged to 0.
122
122
/// * `max_niter` − maximum total number of iterations performed by the algorithm. If this
123
- /// number of iteration is exceeded, `None` is returned. If `niter == 0`, then the algorithm
124
- /// continues indefinitely until convergence.
123
+ /// number of iteration is exceeded, `None` is returned. If `niter == 0`, then the algorithm
124
+ /// continues indefinitely until convergence.
125
125
pub fn try_svd (
126
126
self ,
127
127
compute_u : bool ,
@@ -153,8 +153,8 @@ impl<T: ComplexField, R: Dim, C: Dim, S: Storage<T, R, C>> Matrix<T, R, C, S> {
153
153
/// * `compute_v` − set this to `true` to enable the computation of right-singular vectors.
154
154
/// * `eps` − tolerance used to determine when a value converged to 0.
155
155
/// * `max_niter` − maximum total number of iterations performed by the algorithm. If this
156
- /// number of iteration is exceeded, `None` is returned. If `niter == 0`, then the algorithm
157
- /// continues indefinitely until convergence.
156
+ /// number of iteration is exceeded, `None` is returned. If `niter == 0`, then the algorithm
157
+ /// continues indefinitely until convergence.
158
158
pub fn try_svd_unordered (
159
159
self ,
160
160
compute_u : bool ,
@@ -302,8 +302,8 @@ impl<T: ComplexField, D: Dim, S: Storage<T, D, D>> Matrix<T, D, D, S> {
302
302
///
303
303
/// * `eps` − tolerance used to determine when a value converged to 0.
304
304
/// * `max_niter` − maximum total number of iterations performed by the algorithm. If this
305
- /// number of iteration is exceeded, `None` is returned. If `niter == 0`, then the algorithm
306
- /// continues indefinitely until convergence.
305
+ /// number of iteration is exceeded, `None` is returned. If `niter == 0`, then the algorithm
306
+ /// continues indefinitely until convergence.
307
307
pub fn try_schur ( self , eps : T :: RealField , max_niter : usize ) -> Option < Schur < T , D > >
308
308
where
309
309
D : DimSub < U1 > , // For Hessenberg.
@@ -336,8 +336,8 @@ impl<T: ComplexField, D: Dim, S: Storage<T, D, D>> Matrix<T, D, D, S> {
336
336
///
337
337
/// * `eps` − tolerance used to determine when a value converged to 0.
338
338
/// * `max_niter` − maximum total number of iterations performed by the algorithm. If this
339
- /// number of iteration is exceeded, `None` is returned. If `niter == 0`, then the algorithm
340
- /// continues indefinitely until convergence.
339
+ /// number of iteration is exceeded, `None` is returned. If `niter == 0`, then the algorithm
340
+ /// continues indefinitely until convergence.
341
341
pub fn try_symmetric_eigen (
342
342
self ,
343
343
eps : T :: RealField ,
0 commit comments