File tree Expand file tree Collapse file tree 1 file changed +11
-3
lines changed Expand file tree Collapse file tree 1 file changed +11
-3
lines changed Original file line number Diff line number Diff line change 1
- //! This crate serves matrix manipulation for [rust-ndarray](https://github.com/bluss/rust-ndarray)
1
+ //! This crate serves matrix manipulation for
2
+ //! [rust-ndarray](https://github.com/bluss/rust-ndarray).
3
+ //!
2
4
//! They are implemented as traits,
3
- //! [Matrix](matrix/trait.Matrix.html), [SquareMatrix](square/trait.SquareMatrix.html), and
5
+ //! [Matrix](matrix/trait.Matrix.html), [SquareMatrix](square/trait.SquareMatrix.html),
6
+ //! [TriangularMatrix](triangular/trait.TriangularMatrix.html), and
4
7
//! [HermiteMatrix](hermite/trait.HermiteMatrix.html)
5
8
//!
6
9
//! Matrix
7
10
//! -------
8
11
//! - [singular-value decomposition](matrix/trait.Matrix.html#tymethod.svd)
12
+ //! - [LU decomposition](matrix/trait.Matrix.html#tymethod.lu)
9
13
//! - [QR decomposition](matrix/trait.Matrix.html#tymethod.qr)
10
14
//! - [operator norm for L1 norm](matrix/trait.Matrix.html#tymethod.norm_1)
11
15
//! - [operator norm for L-inf norm](matrix/trait.Matrix.html#tymethod.norm_i)
12
16
//! - [Frobeiuns norm](matrix/trait.Matrix.html#tymethod.norm_f)
13
- //! - [LU factorization](matrix/trait.Matrix.html#tymethod.lu)
14
17
//!
15
18
//! SquareMatrix
16
19
//! -------------
17
20
//! - [inverse of matrix](square/trait.SquareMatrix.html#tymethod.inv)
18
21
//! - [trace of matrix](square/trait.SquareMatrix.html#tymethod.trace)
19
22
//! - [WIP] eigenvalue
20
23
//!
24
+ //! TriangularMatrix
25
+ //! ------------------
26
+ //! - [solve linear problem with upper triangular matrix](triangular/trait.TriangularMatrix.html#tymethod.solve_upper)
27
+ //! - [solve linear problem with lower triangular matrix](triangular/trait.TriangularMatrix.html#tymethod.solve_lower)
28
+ //!
21
29
//! HermiteMatrix
22
30
//! --------------
23
31
//! - [eigenvalue analysis](hermite/trait.HermiteMatrix.html#tymethod.eigh)
You can’t perform that action at this time.
0 commit comments