numpy.random.permutation()
  • References/Python/NumPy/Routines/Random sampling

numpy.random.permutation(x) Randomly permute a sequence, or return a permuted range. If x is a

2025-01-10 15:47:30
numpy.random.binomial()
  • References/Python/NumPy/Routines/Random sampling

numpy.random.binomial(n, p, size=None) Draw samples from a binomial distribution. Samples are drawn from a binomial

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

MaskedArray.__len__() <==> len(x)

2025-01-10 15:47:30
dtype.fields
  • References/Python/NumPy/Routines/Data type routines/numpy.dtype

dtype.fields Dictionary of named fields defined for this data type, or None. The dictionary is indexed

2025-01-10 15:47:30
numpy.square()
  • References/Python/NumPy/Routines/Mathematical functions

numpy.square(x[, out]) = Return the element-wise square of the input.

2025-01-10 15:47:30
Datetimes and Timedeltas
  • References/Python/NumPy/Array objects

New in version 1.7.0. Starting in NumPy 1.7, there are core array data types which natively

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

numpy.column_stack(tup)

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

matrix.T Returns the transpose of the matrix. Does not conjugate! For the complex conjugate transpose, use

2025-01-10 15:47:30
numpy.log1p()
  • References/Python/NumPy/Routines/Mathematical functions

numpy.log1p(x[, out]) = Return the natural logarithm of one plus the input array, element-wise. Calculates log(1 + x)

2025-01-10 15:47:30
ndarray.
  • References/Python/NumPy/Array objects/The N-dimensional array

ndarray.__and__ x.__and__(y) <==> x&y

2025-01-10 15:47:30