Type Definition ndarray::Array3

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

three-dimensional array

Trait Implementations§

source§

impl<A, V, U> From<Vec<V, Global>> 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.