ndarray.data Python buffer object pointing to the start of the array?s data.
ndarray.dtype Data-type of the array?s elements.
ndarray.__mul__ x.__mul__(y) <==> x*y
ndarray.__setstate__(version, shape, dtype, isfortran, rawdata) For unpickling.
class numpy.ndarray
ndarray.choose(choices, out=None, mode='raise') Use an index array to construct a new array from a set of choices. Refer
ndarray.__len__() <==> len(x)
ndarray.conj() Complex-conjugate all elements. Refer to numpy.conjugate for full documentation.
ndarray.argmin(axis=None, out=None) Return indices of the minimum values along the given axis of a. Refer
ndarray.__lt__ x.__lt__(y) <==> x<y
Page 12 of 13