Type Definition ndarray::Array2[][src]

type Array2<A> = Array<A, Ix2>;

two-dimensional array

Trait Implementations

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

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

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

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