[][src]Type Definition ndarray::Array3

type Array3<A> = Array<A, Ix3>;

three-dimensional array

Trait Implementations

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

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

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

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