Skip to content

Commit 07b0c3c

Browse files
Add section on the ecosystem at the beginning of the docs
1 parent ed99462 commit 07b0c3c

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

src/lib.rs

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,19 @@
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")]
97110
extern crate blas_src;

0 commit comments

Comments
 (0)