Basic operations
copyto(dst, src[, casting, where]) Copies values from one array to another, broadcasting as necessary.
Changing array shape
reshape(a, newshape[, order]) Gives a new shape to an array without changing its data.
ravel(a[, order]) Return a contiguous flattened array. ndarray.flat A 1-D iterator over the array.
ndarray.flatten([order]) Return a copy of the array collapsed into one dimension.
Transpose-like operations
moveaxis(a, source, destination) Move axes of an arra