ndarray.
  • References/Python/NumPy/Array objects/The N-dimensional array

ndarray.__setslice__ x.__setslice__(i, j, y) <==> x[i:j]=y Use of negative indices is not supported

2025-01-10 15:47:30
The numpy.ma module
  • References/Python/NumPy/Array objects/Masked arrays

Rationale Masked arrays are arrays that may have missing or invalid entries. The numpy.ma module provides a nearly work-alike replacement for numpy

2025-01-10 15:47:30
numpy.concatenate()
  • References/Python/NumPy/Routines/Array manipulation routines

numpy.concatenate((a1, a2, ...), axis=0) Join a sequence of arrays along an existing axis.

2025-01-10 15:47:30
numpy.asanyarray()
  • References/Python/NumPy/Routines/Array manipulation routines

numpy.asanyarray(a, dtype=None, order=None)

2025-01-10 15:47:30
matrix.resize()
  • References/Python/NumPy/Array objects/Standard array subclasses/numpy.matrix

matrix.resize(new_shape, refcheck=True) Change shape and size of array in-place.

2025-01-10 15:47:30
chararray.encode()
  • References/Python/NumPy/Routines/String operations/numpy.core.defchararray.chararray

chararray.encode(encoding=None, errors=None)

2025-01-10 15:47:30
numpy.polynomial.laguerre.lagdomain
  • References/Python/NumPy/Routines/Polynomials/Polynomial Package/Laguerre Module

numpy.polynomial.laguerre.lagdomain = array([0, 1])

2025-01-10 15:47:30
numpy.polynomial.chebyshev.chebmulx()
  • References/Python/NumPy/Routines/Polynomials/Polynomial Package/Chebyshev Module

numpy.polynomial.chebyshev.chebmulx(c)

2025-01-10 15:47:30
broadcast.index
  • References/Python/NumPy/Routines/Array manipulation routines/numpy.broadcast

broadcast.index current index in broadcasted result Examples

2025-01-10 15:47:30
numpy.polynomial.chebyshev.Chebyshev()
  • References/Python/NumPy/Routines/Polynomials/Polynomial Package/Chebyshev Module

class numpy.polynomial.chebyshev.Chebyshev(coef, domain=None, window=None)

2025-01-10 15:47:30