ndarray.base Base object if memory is from some other object. Examples The base of an array
ndarray.strides Tuple of bytes to step in each dimension when traversing an array. The byte offset of element
ndarray.itemset(*args) Insert scalar into an array (scalar is cast to array?s dtype, if possible) There must be
ndarray.__ne__ x.__ne__(y) <==> x!=y
ndarray.ravel([order]) Return a flattened array. Refer to
ndarray.round(decimals=0, out=None) Return a with each element rounded to the given number of decimals.
ndarray.__lshift__ x.__lshift__(y) <==> x<<y
ndarray.__hex__() <==> hex(x)
ndarray.squeeze(axis=None) Remove single-dimensional entries from the shape of a. Refer to
ndarray.__oct__() <==> oct(x)
Page 2 of 13