File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
ndarray-linalg/src/lobpcg Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 2
2
//!
3
3
//! Locally Optimal Block Preconditioned Conjugate Gradient (LOBPCG) is a matrix-free method for
4
4
//! finding the large (or smallest) eigenvalues and the corresponding eigenvectors of a symmetric
5
- //! eigenvalue problem
5
+ //! eigenvalue problem
6
6
//! ```
7
7
//! A x = lambda x
8
8
//! ```
Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ impl<A: Float + PartialOrd + DivAssign<A> + 'static + MagnitudeCorrection> Trunc
90
90
/// Truncated singular value decomposition
91
91
///
92
92
/// Wraps the LOBPCG algorithm and provides convenient builder-pattern access to
93
- /// parameter like maximal iteration, precision and contrain matrix.
93
+ /// parameter like maximal iteration, precision and contrain matrix.
94
94
pub struct TruncatedSvd < A : Scalar > {
95
95
order : Order ,
96
96
problem : Array2 < A > ,
You can’t perform that action at this time.
0 commit comments