chararray.rsplit()

chararray.rsplit(sep=None, maxsplit=None) [source] For each element in self, return a list of the words in the string, using sep as the delimiter string. See also char.rsplit

generic.diagonal()

generic.diagonal() 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

numpy.array()

numpy.array(object, dtype=None, copy=True, order=None, subok=False, ndmin=0) Create an array. Parameters: object : array_like An array, any object exposing the array interface, an object whose __array__ method returns an array, or any (nested) sequence. dtype : data-type, optional The desired data-type for the array. If not given, then the type will be determined as the minimum type required to hold the objects in the sequence. This argument can only be used to ?upcast? the array. For d

numpy.polynomial.hermite_e.hermegrid2d()

numpy.polynomial.hermite_e.hermegrid2d(x, y, c) [source] Evaluate a 2-D HermiteE series on the Cartesian product of x and y. This function returns the values: where the points (a, b) consist of all pairs formed by taking a from x and b from y. The resulting points form a grid with x in the first dimension and y in the second. The parameters x and y are converted to arrays only if they are tuples or a lists, otherwise they are treated as a scalars. In either case, either x and y or their

record.astype()

record.astype() 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

numpy.polynomial.hermite.hermone

numpy.polynomial.hermite.hermone = array([1])

numpy.testing.assert_approx_equal()

numpy.testing.assert_approx_equal(actual, desired, significant=7, err_msg='', verbose=True) [source] Raises an AssertionError if two items are not equal up to significant digits. Note It is recommended to use one of assert_allclose, assert_array_almost_equal_nulp or assert_array_max_ulp instead of this function for more consistent floating point comparisons. Given two numbers, check that they are approximately equal. Approximately equal is defined as the number of significant digits that

record.size

record.size number of elements in the gentype

generic.view()

generic.view() 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

self.typeStr

Introduction Writing tests for the numpy.i SWIG interface file is a combinatorial headache. At present, 12 different data types are supported, each with 74 different argument signatures, for a total of 888 typemaps supported ?out of the box?. Each of these typemaps, in turn, might require several unit tests in order to verify expected behavior for both proper and improper inputs. Currently, this results in more than 1,000 individual unit tests executed when make test is run in the numpy/tools