numpy.savetxt()

numpy.savetxt(fname, X, fmt='%.18e', delimiter=' ', newline='\n', header='', footer='', comments='# ') [source] Save an array to a text file. Parameters: fname : filename or file handle If the filename ends in .gz, the file is automatically saved in compressed gzip format. loadtxt understands gzipped files transparently. X : array_like Data to be saved to a text file. fmt : str or sequence of strs, optional A single format (%10.5f), a sequence of formats, or a multi-format string, e.g

Chebyshev.copy()

Chebyshev.copy() [source] Return a copy. Returns: new_series : series Copy of self.

HermiteE.integ()

HermiteE.integ(m=1, k=[], lbnd=None) [source] Integrate. Return a series instance that is the definite integral of the current series. Parameters: m : non-negative int The number of integrations to perform. k : array_like Integration constants. The first constant is applied to the first integration, the second to the second, and so on. The list of values must less than or equal to m in length and any missing values are set to zero. lbnd : Scalar The lower bound of the definite integra

numpy.core.defchararray.rfind()

numpy.core.defchararray.rfind(a, sub, start=0, end=None) [source] For each element in a, return the highest index in the string where substring sub is found, such that sub is contained within [start, end]. Calls str.rfind element-wise. Parameters: a : array-like of str or unicode sub : str or unicode start, end : int, optional Optional arguments start and end are interpreted as in slice notation. Returns: out : ndarray Output array of ints. Return -1 on failure. See also str.rfind

generic.argmin()

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

MaskedArray.__lt__

MaskedArray.__lt__ x.__lt__(y) <==> x<y

MaskedArray.sort()

MaskedArray.sort(axis=-1, kind='quicksort', order=None, endwith=True, fill_value=None) [source] Sort the array, in-place Parameters: a : array_like Array to be sorted. axis : int, optional Axis along which to sort. If None, the array is flattened before sorting. The default is -1, which sorts along the last axis. kind : {?quicksort?, ?mergesort?, ?heapsort?}, optional Sorting algorithm. Default is ?quicksort?. order : list, optional When a is a structured array, this argument specif

ndenumerate.next()

ndenumerate.next() [source] Standard iterator method, returns the index tuple and array value. Returns: coords : tuple of ints The indices of the current iteration. val : scalar The array element of the current iteration.

HermiteE.__call__()

HermiteE.__call__(arg) [source]

Numpy-specific help functions

Finding help lookfor(what[, module, import_modules, ...]) Do a keyword search on docstrings. Reading help info([object, maxwidth, output, toplevel]) Get help information for a function, class, or module. source(object[, output]) Print or write to a file the source code for a Numpy object.