ndarray.__abs__()

ndarray.__abs__() <==> abs(x)

numpy.binary_repr()

numpy.binary_repr(num, width=None) [source] Return the binary representation of the input number as a string. For negative numbers, if width is not given, a minus sign is added to the front. If width is given, the two?s complement of the number is returned, with respect to that width. In a two?s-complement system negative numbers are represented by the two?s complement of the absolute value. This is the most common method of representing signed integers on computers [R16]. A N-bit two?s-com

dtype.name

dtype.name A bit-width name for this data-type. Un-sized flexible data-type objects do not have this attribute.

MaskedArray.std()

MaskedArray.std(axis=None, dtype=None, out=None, ddof=0) [source] Compute the standard deviation along the specified axis. Returns the standard deviation, a measure of the spread of a distribution, of the array elements. The standard deviation is computed for the flattened array by default, otherwise over the specified axis. Parameters: a : array_like Calculate the standard deviation of these values. axis : None or int or tuple of ints, optional Axis or axes along which the standard dev

numpy.random.poisson()

numpy.random.poisson(lam=1.0, size=None) Draw samples from a Poisson distribution. The Poisson distribution is the limit of the binomial distribution for large N. Parameters: lam : float or sequence of float Expectation of interval, should be >= 0. A sequence of expectation intervals must be broadcastable over the requested size. size : int or tuple of ints, optional Output shape. If the given shape is, e.g., (m, n, k), then m * n * k samples are drawn. Default is None, in which case

dtype.num

dtype.num A unique number for each of the 21 different built-in types. These are roughly ordered from least-to-most precision.

ndarray.__contains__

ndarray.__contains__ x.__contains__(y) <==> y in x

chararray.upper()

chararray.upper() [source] Return an array with the elements of self converted to uppercase. See also char.upper

MaskedArray.__rsub__()

MaskedArray.__rsub__(other) [source] Subtract self from other, and return a new masked array.

numpy.core.records.array()

numpy.core.records.array(obj, dtype=None, shape=None, offset=0, strides=None, formats=None, names=None, titles=None, aligned=False, byteorder=None, copy=True) [source] Construct a record array from a wide-variety of objects.