numpy.shares_memory()
  • References/Python/NumPy/Routines/Miscellaneous routines

numpy.shares_memory(a, b, max_work=None) Determine if two arrays share memory

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

numpy.empty_like(a, dtype=None, order='K', subok=True) Return a new array with the same shape and type as a given array.

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

numpy.absolute(x[, out]) = Calculate the absolute value element-wise.

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

can_cast(from, totype, casting = ) Returns True if cast between data types can occur according to the casting rule. promote_types(type1, type2) Returns the data type with the smallest size and smallest scalar kind to which both type1 and type2 may be safely cast. min_scalar_type(a) For scalar a, returns the data type with the smallest size and smallest scalar kind which can hold its value. result_type(*arrays_and_dtypes) Returns the type that results from applying the NumPy type promotion

2025-01-10 15:47:30
numpy.poly1d()
  • References/Python/NumPy/Routines/Polynomials/Poly1d

class numpy.poly1d(c_or_r, r=0, variable=None)

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

numpy.ldexp(x1, x2[, out]) = Returns x1 * 2**x2, element-wise. The mantissas x1 and twos exponents x2

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

chararray.astype(dtype, order='K', casting='unsafe', subok=True, copy=True) Copy of the array, cast

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

numpy.polynomial.legendre.leggrid3d(x, y, z, c)

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

numpy.polynomial.polynomial.polytrim(c, tol=0)

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

numpy.degrees(x[, out]) = Convert angles from radians to degrees.

2025-01-10 15:47:30