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

Chebyshev.copy()

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

MaskedArray.__hex__()

MaskedArray.__hex__() <==> hex(x)

numpy.polynomial.hermite_e.hermeone

numpy.polynomial.hermite_e.hermeone = array([1])

numpy.ma.polyfit()

numpy.ma.polyfit(x, y, deg, rcond=None, full=False, w=None, cov=False) [source] Least squares polynomial fit. Fit a polynomial p(x) = p[0] * x**deg + ... + p[deg] of degree deg to points (x, y). Returns a vector of coefficients p that minimises the squared error. Parameters: x : array_like, shape (M,) x-coordinates of the M sample points (x[i], y[i]). y : array_like, shape (M,) or (M, K) y-coordinates of the sample points. Several data sets of sample points sharing the same x-coordinate

Numpy C Code Explanations

Fanaticism consists of redoubling your efforts when you have forgotten your aim. ? George Santayana An authority is a person who can tell you more about something than you really care to know. ? Unknown This Chapter attempts to explain the logic behind some of the new pieces of code. The purpose behind these explanations is to enable somebody to be able to understand the ideas behind the implementation somewhat more easily than just staring at the code. Perhaps in this way, the algorithms ca

RandomState.triangular()

RandomState.triangular(left, mode, right, size=None) Draw samples from the triangular distribution. The triangular distribution is a continuous probability distribution with lower limit left, peak at mode, and upper limit right. Unlike the other distributions, these parameters directly define the shape of the pdf. Parameters: left : scalar Lower limit. mode : scalar The value where the peak of the distribution occurs. The value should fulfill the condition left <= mode <= right.

matrix.ctypes

matrix.ctypes An object to simplify the interaction of the array with the ctypes module. This attribute creates an object that makes it easier to use arrays when calling shared libraries with the ctypes module. The returned object has, among others, data, shape, and strides attributes (see Notes below) which themselves return ctypes objects that can be used as arguments to a shared library. Parameters: None Returns: c : Python object Possessing attributes data, shape, strides, etc. S

busdaycalendar.weekmask

busdaycalendar.weekmask A copy of the seven-element boolean mask indicating valid days.

numpy.ma.mask_or()

numpy.ma.mask_or(m1, m2, copy=False, shrink=True) [source] Combine two masks with the logical_or operator. The result may be a view on m1 or m2 if the other is nomask (i.e. False). Parameters: m1, m2 : array_like Input masks. copy : bool, optional If copy is False and one of the inputs is nomask, return a view of the other input mask. Defaults to False. shrink : bool, optional Whether to shrink the output to nomask if all its values are False. Defaults to True. Returns: mask : outp