ndarray.__ilshift__ x.__ilshift__(y) <==> x<<=y
ndarray.nbytes Total bytes consumed by the elements of the array. Notes Does not include
ndarray.__le__ x.__le__(y) <==> x<=y
ndarray.ptp(axis=None, out=None) Peak to peak (maximum - minimum) value along a given axis. Refer to
ndarray.dot(b, out=None) Dot product of two arrays. Refer to
ndarray.__divmod__(y) <==> divmod(x, y)
ndarray.__mod__ x.__mod__(y) <==> x%y
ndarray.__imod__ x.__imod__(y) <==> x%=y
ndarray.__array__(|dtype) ? reference if type unchanged, copy otherwise. Returns either a new reference to self if dtype
ndarray.resize(new_shape, refcheck=True) Change shape and size of array in-place.
Page 6 of 13