Type Alias ndarray::Array3

source ·
pub type Array3<A> = Array<A, Ix3>;
Expand description

three-dimensional array

Aliased Type§

struct Array3<A> { /* private fields */ }

Trait Implementations§

source§

impl<A, V, U> From<Vec<V>> for Array3<A>
where V: FixedInitializer<Elem = U>, U: FixedInitializer<Elem = A>,

source§

fn from(xs: Vec<V>) -> Self

Converts the Vec of arrays to an owned 3-D array.

Panics if the product of non-zero axis lengths overflows isize.