#array #multidimensional #multi-dimensional #slice

multiarray

Small Rust library for handling multi-dimensional data

4 releases

Uses old Rust 2015

0.1.3 Sep 30, 2015
0.1.2 Sep 30, 2015
0.1.1 Sep 30, 2015
0.1.0 Sep 30, 2015

#2026 in Algorithms

Download history 32/week @ 2023-10-20 33/week @ 2023-10-27 32/week @ 2023-11-03 29/week @ 2023-11-10 36/week @ 2023-11-17 37/week @ 2023-11-24 34/week @ 2023-12-01 30/week @ 2023-12-08 36/week @ 2023-12-15 32/week @ 2023-12-22 17/week @ 2023-12-29 30/week @ 2024-01-05 34/week @ 2024-01-12 32/week @ 2024-01-19 24/week @ 2024-01-26 21/week @ 2024-02-02

116 downloads per month

MIT/Apache

27KB
523 lines

This library provides ways to create and deal with multi-dimensional arrays. It basically tries to generalize Box<[T]>, &[T] and &mut[T] to multiple dimensions with some convenient methods that allow you to slice views, create lower-dimensional slices of it, subsampled or reversed views or even swap dimensions (for example, to create a transposed view of a 2D matrix).

Example

In the following example you'll see how a 3D array and two views into it (2D and 1D) can be created.

use multiarray::*;

let mut voxels = Array3D::new([3,4,5], 0); // 3x4x5 ints
voxels[[0,0,0]] = 1;
voxels[[1,2,3]] = 23;
voxels[[2,3,4]] = 42;
assert!(voxels[[1,2,3]] == 23);
let slice = voxels.eliminated_dim(1, 2);   // 2D slice
assert!(slice[[1,3]] == 23);
let lane = slice.eliminated_dim(1, 3);     // 1D lane
assert!(lane[1] == 23);

Here, slice is a 2D slice of the 3D volume (at y=2) and lane is a one-dimensional view that also acts as an ExactSize/DoubleEnded iterator.


lib.rs:

This crate provides types to deal with multi-dimensional data. It basically tries to generalize over Box<[T]>, &[T] and &mut [T] to multiple dimensions. As a side effect, it also supports one-dimensional arrays that have a stride other than one.

Examples

Here's an example of a 3D array. One 2D view and one 1D view into part of the data is created.

use multiarray::*;

let mut voxels = Array3D::new([3,4,5], 0); // 3x4x5 ints
voxels[[0,0,0]] = 1;
voxels[[1,2,3]] = 23;
voxels[[2,3,4]] = 42;
assert!(voxels[[1,2,3]] == 23);
let slice = voxels.eliminated_dim(1, 2);   // 2D slice
assert!(slice[[1,3]] == 23);
let lane = slice.eliminated_dim(1, 3);     // 1D lane
assert!(lane[1] == 23);

Please note that [usize; N] is used as index. For convenience the one-dimensional case also supports usize as index in addition to [usize; 1], the one-dimensional views are convertible from borrowed slices (&[T] and &mut[T]) via std::convert::{ From, Into } and also implement the iterator traits Iterator, ExactSizeIterator and DoubleEndedIterator.

Dependencies