MaskedArray.__div__()

MaskedArray.__div__(other) [source] Divide other into self, and return a new masked array.

generic.resize()

generic.resize() Not implemented (virtual attribute) Class generic exists solely to derive numpy scalars from, and possesses, albeit unimplemented, all the attributes of the ndarray class so as to provide a uniform API. See also The

chararray.base

chararray.base Base object if memory is from some other object. Examples The base of an array that owns its memory is None: >>> x = np.array([1,2,3,4]) >>> x.base is None True Slicing creates a view, whose memory is shared with x: >>> y = x[2:] >>> y.base is x True

iinfo.min

iinfo.min Minimum value of given dtype.

numpy.polynomial.legendre.legone

numpy.polynomial.legendre.legone = array([1])

numpy.ma.swapaxes()

numpy.ma.swapaxes(self, *args, **params) a.swapaxes(axis1, axis2) = Return a view of the array with axis1 and axis2 interchanged. Refer to numpy.swapaxes for full documentation. See also numpy.swapaxes equivalent function

Legendre Module (numpy.polynomial.legendre)

New in version 1.6.0. This module provides a number of objects (mostly functions) useful for dealing with Legendre series, including a Legendre class that encapsulates the usual arithmetic operations. (General information on how this module represents and works with such polynomials is in the docstring for its ?parent? sub-package, numpy.polynomial). Legendre Class Legendre(coef[, domain, window]) A Legendre series class. Basics legval(x, c[, tensor]) Evaluate a Legendre series at point

MaskedArray.__rpow__()

MaskedArray.__rpow__(other) [source] Raise other to the power self, masking the potential NaNs/Infs

generic.cumprod()

generic.cumprod() Not implemented (virtual attribute) Class generic exists solely to derive numpy scalars from, and possesses, albeit unimplemented, all the attributes of the ndarray class so as to provide a uniform API. See also The

ndarray.astype()

ndarray.astype(dtype, order='K', casting='unsafe', subok=True, copy=True) Copy of the array, cast to a specified type. Parameters: dtype : str or dtype Typecode or data-type to which the array is cast. order : {?C?, ?F?, ?A?, ?K?}, optional Controls the memory layout order of the result. ?C? means C order, ?F? means Fortran order, ?A? means ?F? order if all the arrays are Fortran contiguous, ?C? order otherwise, and ?K? means as close to the order the array elements appear in memory as