We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7184170 commit fdfee3cCopy full SHA for fdfee3c
src/lib.rs
@@ -16,13 +16,13 @@
16
//! - [inverse of matrix](square/trait.SquareMatrix.html#tymethod.inv)
17
//! - [trace of matrix](square/trait.SquareMatrix.html#tymethod.trace)
18
//! - [WIP] eigenvalue
19
-//! - [WIP] LU factorization
+//! - [LU factorization](square/trait.SquareMatrix.html#tymethod.lu)
20
//!
21
//! HermiteMatrix
22
//! --------------
23
//! - [eigenvalue analysis](hermite/trait.HermiteMatrix.html#tymethod.eigh)
24
//! - [symmetric square root](hermite/trait.HermiteMatrix.html#tymethod.ssqrt)
25
-//! - [WIP] Cholesky factorization
+//! - [Cholesky factorization](hermite/trait.HermiteMatrix.html#tymethod.cholesky)
26
27
extern crate lapack;
28
extern crate num_traits;
0 commit comments