File tree Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change 9292//!
9393//! * If you have experience with NumPy, you may also be interested in
9494//! [`ndarray_for_numpy_users`](doc/ndarray_for_numpy_users/index.html).
95+ //!
96+ //! ## The ndarray ecosystem
97+ //!
98+ //! `ndarray` provides a lot of functionality, but it's not a one-stop solution.
99+ //!
100+ //! `ndarray` includes matrix multiplication and other binary/unary operations out of the box.
101+ //! More advanced linear algebra routines (e.g. SVD decomposition or eigenvalue computation)
102+ //! can be found in [`ndarray-linalg`](https://crates.io/crates/ndarray-linalg).
103+ //!
104+ //! The same holds for statistics: `ndarray` provides some basic functionalities (e.g. `mean`)
105+ //! but more advanced routines can be found in [`ndarray-stats`](https://crates.io/crates/ndarray-stats).
106+ //!
107+ //! If you are looking to generate random arrays instead, check out [`ndarray-rand`](https://crates.io/crates/ndarray-rand).
95108
96109#[ cfg( feature = "blas" ) ]
97110extern crate blas_src;
You can’t perform that action at this time.
0 commit comments