numpy.hypot()
  • References/Python/NumPy/Routines/Mathematical functions

numpy.hypot(x1, x2[, out]) = Given the ?legs? of a right triangle, return its hypotenuse. Equivalent to sqrt(x1**2 +

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

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

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

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

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

numpy.ediff1d(ary, to_end=None, to_begin=None)

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

numpy.modf(x[, out1, out2]) = Return the fractional and integral parts of an array, element-wise. The fractional and integral

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

numpy.floor(x[, out]) = Return the floor of the input, element-wise. The floor of the scalar x is the largest

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

numpy.sin(x[, out]) = Trigonometric sine, element-wise.

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

numpy.true_divide(x1, x2[, out]) = Returns a true division of the inputs, element-wise. Instead of the Python traditional

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

numpy.arctan(x[, out]) = Trigonometric inverse tangent, element-wise. The inverse of tan, so that if y = tan(x)

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

numpy.real(val)

2025-01-10 15:47:30