ndarray.reshape(shape, order='C') Returns an array containing the same data with a new shape. Refer to
ndarray.max(axis=None, out=None) Return the maximum along a given axis. Refer to
ndarray.squeeze(axis=None) Remove single-dimensional entries from the shape of a. Refer to
ndarray.__ne__ x.__ne__(y) <==> x!=y
ndarray.ravel([order]) Return a flattened array. Refer to
ndarray.base Base object if memory is from some other object. Examples The base of an array
ndarray.size Number of elements in the array. Equivalent to np.prod(a.shape), i.e., the product of
ndarray.__contains__ x.__contains__(y) <==> y in x
ndarray.itemset(*args) Insert scalar into an array (scalar is cast to array?s dtype, if possible) There must be
ndarray.item(*args) Copy an element of an array to a standard Python scalar and return it.
Page 3 of 13