Mathematical Functions
Trigonometric functions
Trigonometric sine, element-wise. |
|
Trigonometric cosine, element-wise. |
|
Trigonometric tangent, element-wise. |
|
Inverse sine, element-wise. |
|
Trigonometric inverse cosine, element-wise. |
|
Trigonometric inverse tangent, element-wise. |
|
Given the "legs" of a right triangle, return its hypotenuse. |
|
Element-wise arc tangent of x1/x2 choosing the quadrant correctly. |
|
Convert angles from radians to degrees. |
|
Convert angles from degrees to radians. |
|
Unwrap by changing deltas between values to 2*pi complement. |
|
Convert angles from degrees to radians. |
|
Convert angles from radians to degrees. |
|
Calculates the square root of the sum of squares of elements in the input array. |
Hyperbolic functions
Hyperbolic sine, element-wise. |
|
Hyperbolic cosine, element-wise. |
|
Compute hyperbolic tangent element-wise. |
|
Inverse hyperbolic sine, element-wise. |
|
Inverse hyperbolic cosine, element-wise. |
|
Hyperbolic inverse tangent, element-wise. |
Rounding
Round an array to the given number of decimals. |
|
Evenly round to the given number of decimals. |
|
Round elements of the array to the nearest integer. |
|
Round a number to the nearest integer toward minus infinity. |
|
Compute the ceiling of the input, element-wise. |
|
Compute the truncated value of the input, element-wise. |
Sums, products, differences
Return the product of array elements over a given axis. |
|
Sum of array elements over a given axis. |
|
Return the cumulative product of elements along a given axis. |
|
Return the cumulative sum of the elements along a given axis. |
|
Return the cumulative product of array elements over a given axis treating Not a Numbers (NaNs) as one. |
|
Return the cumulative sum of the elements along a given axis. |
|
Return the sum of array elements over a given axis treating Not a Numbers (NaNs) as zero. |
|
Return the product of array elements over a given axis treating Not a Numbers (NaNs) as ones. |
|
Return the cross product of two (arrays of) vectors. |
|
Calculate the n-th discrete difference along the given axis. |
|
The differences between consecutive elements of an array. |
|
Return the gradient of an array. |
|
Integrate along the given axis using the composite trapezoidal rule. |
Exponents and logarithms
Calculate the exponential, element-wise. |
|
Return the exponential of the input array minus one, element-wise. |
|
Calculate 2**p for all p in the input array. |
|
Natural logarithm, element-wise. |
|
Return the base 10 logarithm of the input array, element-wise. |
|
Return the base 2 logarithm of the input array, element-wise. |
|
Return the natural logarithm of one plus the input array, element-wise. |
|
Calculates |
|
Calculates the logarithm of the sum of exponentials of elements in the input array. |
Other special functions
Floating point routines
Returns element-wise True where signbit is set (less than zero). |
|
Change the sign of x1 to that of x2, element-wise. |
Rational routines
Arithmetic operations
Add arguments element-wise. |
|
Return the reciprocal of the argument, element-wise. |
|
Numerical negative, element-wise. |
|
Numerical positive, element-wise. |
|
Multiply arguments element-wise. |
|
Divide arguments element-wise. |
|
First array elements raised to powers from second array, element-wise. |
|
Subtract arguments, element-wise. |
|
Divide arguments element-wise. |
|
Compute the largest integer smaller or equal to the division of the inputs. |
|
Returns the element-wise remainder of division. |
|
Compute element-wise remainder of division. |
|
Return the fractional and integral parts of an array, element-wise. |
|
Return element-wise remainder of division. |
Handling complex numbers
Return the angle of the complex argument. |
|
Return the real part of the complex argument. |
|
Return the imaginary part of the complex argument. |
|
Return the complex conjugate, element-wise. |
|
Return the complex conjugate, element-wise. |
|
Returns the projection of a number onto the Riemann sphere. |
Extrema Finding
Element-wise maximum of array elements. |
|
Return the maximum of an array or maximum along an axis. |
|
Return the maximum of an array or maximum along an axis. |
|
Element-wise maximum of array elements. |
|
Return the maximum of an array or maximum along an axis, ignoring any NaNs. |
|
Element-wise minimum of array elements. |
|
Return the minimum of an array or maximum along an axis. |
|
Return the minimum of an array or minimum along an axis. |
|
Element-wise minimum of array elements. |
|
Return the minimum of an array or minimum along an axis, ignoring any NaNs. |
Miscellaneous
Returns the discrete, linear convolution of two one-dimensional sequences. |
|
Clip (limit) the values in an array. |
|
Return the non-negative square-root of an array, element-wise. |
|
Return the cube-root of an array, element-wise. |
|
Return the element-wise square of the input. |
|
Computes the reciprocal square-root for each element x_i for input array x. |
|
Calculate the absolute value element-wise. |
|
Calculate the absolute value element-wise. |
|
Compute the absolute values element-wise. |
|
Returns an element-wise indication of the sign of a number. |