Crates.io | ndarray |
lib.rs | ndarray |
version | 0.16.1 |
source | src |
created_at | 2015-12-20 22:11:24.106344 |
updated_at | 2024-08-14 17:38:28.979522 |
description | An n-dimensional array for general elements and for numerics. Lightweight array views and slicing; views support chunking and splitting. |
homepage | |
repository | https://github.com/rust-ndarray/ndarray |
max_upload_size | |
id | 3717 |
size | 1,395,339 |
ndarray
implements an n-dimensional container for general elements and for
numerics.
In n-dimensional we include for example 1-dimensional rows or columns, 2-dimensional matrices, and higher dimensional arrays. If the array has n dimensions, then an element in the array is accessed by using that many indices. Each dimension is also called an axis.
[T]
data using
ArrayView::from
and ArrayViewMut::from
.Zip
for lock step function application across two or more arrays or other
item producers (NdProducer
trait).