ndarray.itemsize Length of one array element in bytes. Examples
ndarray.fill(value) Fill the array with a scalar value.
static ndarray.__new__(S, ...) ? a new object with type S, a subtype of T
ndarray.__idiv__ x.__idiv__(y) <==> x/=y
ndarray.view(dtype=None, type=None) New view of array with the same data.
ndarray.transpose(*axes) Returns a view of the array with axes transposed. For a 1-D array, this has no effect
ndarray.__repr__() <==> repr(x)
ndarray.astype(dtype, order='K', casting='unsafe', subok=True, copy=True) Copy of the array, cast to a specified type.
ndarray.put(indices, values, mode='raise') Set a.flat[n] = values[n] for all n in indices. Refer
ndarray.__truediv__ x.__truediv__(y) <==> x/y
Page 10 of 13