File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change 4
4
//! The **ndarray** crate provides the [**Array**](./struct.Array.html) type, an
5
5
//! n-dimensional container similar to numpy's ndarray.
6
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
+ //!
7
18
8
19
#[ cfg( feature = "serde" ) ]
9
20
extern crate serde;
You can’t perform that action at this time.
0 commit comments