|
7 | 7 | //! * Linear Algebra (with BLAS & LAPACK)
|
8 | 8 | //! * [Matrix](structure/matrix/index.html) operations
|
9 | 9 | //! * `+,-,*,/`
|
10 |
| -//! * LU, Determinant, Inverse |
| 10 | +//! * LU Decomposition, Determinant, Inverse |
11 | 11 | //! * QR Decomposition (`O3` feature needed)
|
12 | 12 | //! * Singular Value Decomposition (`O3` feature needed)
|
| 13 | +//! * Cholesky Decomposition (`O3` feature needed) |
13 | 14 | //! * Reduced Row Echelon Form
|
14 | 15 | //! * [Vector](structure/vector/index.html) operations
|
15 | 16 | //! * [Eigenvalue, Eigenvector](numerical/eigen/index.html) algorithms
|
|
80 | 81 | //! ### Cargo.toml
|
81 | 82 | //!
|
82 | 83 | //! * To use `peroxide`, you should edit `Cargo.toml`
|
83 |
| -//! * Current document version is corresponding to `0.30.2` |
| 84 | +//! * Current document version is corresponding to `0.30.11` |
84 | 85 | //!
|
85 | 86 | //! 1. Default
|
86 | 87 | //! ```toml
|
|
159 | 160 | //! ## Useful tips for features
|
160 | 161 | //!
|
161 | 162 | //! * After `0.28.0`, `dataframe` feature is replaced by `nc` feature.
|
162 |
| -//! * If you want to use `QR` or `SVD` then should use `O3` feature (there are no implementations for these decompositions in `default`) |
| 163 | +//! * If you want to use *QR* or *SVD* or *Cholesky Decomposition* then should use `O3` feature (there are no implementations for these decompositions in `default`) |
163 | 164 | //! * If you want to write your numerical results, then use `nc` feature and `netcdf` format. (It is much more effective than `csv` and `json`.)
|
164 | 165 | //! * After `0.23.0`, there are two options - `fuga`, `prelude`. Choose proper option for your computations.
|
165 | 166 | //! * To plot, use `nc` feature to export data as netcdf format and use python to draw plot.
|
|
0 commit comments