ndarray.reshape(shape, order='C') Returns an array containing the same data with a new shape. Refer to
ndarray.__contains__ x.__contains__(y) <==> y in x
ndarray.__eq__ x.__eq__(y) <==> x==y
ndarray.imag The imaginary part of the array. Examples >>>
ndarray.__setslice__ x.__setslice__(i, j, y) <==> x[i:j]=y Use of negative indices is not supported
ndarray.__ilshift__ x.__ilshift__(y) <==> x<<=y
ndarray.__copy__([order]) Return a copy of the array.
ndarray.__getslice__ x.__getslice__(i, j) <==> x[i:j] Use of negative indices is not supported.
ndarray.shape Tuple of array dimensions. Notes May be used to ?reshape? the array, as long
ndarray.var(axis=None, dtype=None, out=None, ddof=0, keepdims=False) Returns the variance of the array elements, along given
Page 4 of 13