ndarray.ndim

ndarray.ndim Number of array dimensions. Examples >>> x = np.array([1, 2, 3]) >>> x.ndim 1 >>> y = np.zeros((2, 3, 4)) >>> y.ndim 3

Chebyshev.__call__()

Chebyshev.__call__(arg) [source]

ndarray.__copy__()

ndarray.__copy__([order]) Return a copy of the array. Parameters: order : {?C?, ?F?, ?A?}, optional If order is ?C? (False) then the result is contiguous (default). If order is ?Fortran? (True) then the result has fortran order. If order is ?Any? (None) then the result has fortran order only if the array already is in fortran order.

Polynomial.copy()

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

record.max()

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

chararray.isalnum() [source] Returns true for each element if all characters in the string are alphanumeric and there is at least one character, false otherwise. See also char.isalnum

matrix.cumprod()

matrix.cumprod(axis=None, dtype=None, out=None) Return the cumulative product of the elements along the given axis. Refer to numpy.cumprod for full documentation. See also numpy.cumprod equivalent function

Laguerre.copy()

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

generic.size

generic.size number of elements in the gentype

chararray.setfield()

chararray.setfield(val, dtype, offset=0) Put a value into a specified place in a field defined by a data-type. Place val into a?s field defined by dtype and beginning offset bytes into the field. Parameters: val : object Value to be placed in field. dtype : dtype object Data-type of the field in which to place val. offset : int, optional The number of bytes into the field at which to place val. Returns: None See also getfield Examples >>> x = np.eye(3) >>> x.ge