We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa868d7 commit df6434bCopy full SHA for df6434b
src/lib.rs
@@ -4,6 +4,17 @@
4
//! The **ndarray** crate provides the [**Array**](./struct.Array.html) type, an
5
//! n-dimensional container similar to numpy's ndarray.
6
//!
7
+//! ## Crate Summary and Status
8
+//!
9
+//! - Implements the numpy striding scheme for n-dimensional arrays
10
+//! - `Array` is clone on write, so it can be both a view or an owner of the
11
+//! data.
12
+//! - Striding and broadcasting is fully implemented
13
+//! - Due to iterators, arithmetic operations, matrix multiplication etc
14
+//! are not very well optimized, this is not a serious crate for numerics
15
+//! or linear algebra. `Array` is a good container.
16
+//! - There is no integration with linear algebra packages (at least not yet).
17
18
19
#[cfg(feature = "serde")]
20
extern crate serde;
0 commit comments