ndarray.diagonal(offset=0, axis1=0, axis2=1) Return specified diagonals. In NumPy 1.9 the returned array is a read-only
ndarray.__setitem__ x.__setitem__(i, y) <==> x[i]=y
ndarray.__ge__ x.__ge__(y) <==> x>=y
ndarray.__float__() <==> float(x)
ndarray.__iadd__ x.__iadd__(y) <==> x+=y
ndarray.ptp(axis=None, out=None) Peak to peak (maximum - minimum) value along a given axis. Refer to
ndarray.ndim Number of array dimensions. Examples >>>
ndarray.any(axis=None, out=None, keepdims=False) Returns True if any of the elements of a evaluate to True.
ndarray.__div__ x.__div__(y) <==> x/y
ndarray.ctypes An object to simplify the interaction of the array with the ctypes module. This attribute creates
Page 6 of 13