Mathematical Functions

Trigonometric functions

dpnp.sin

Trigonometric sine, element-wise.

dpnp.cos

Trigonometric cosine, element-wise.

dpnp.tan

Trigonometric tangent, element-wise.

dpnp.arcsin

Inverse sine, element-wise.

dpnp.arccos

Trigonometric inverse cosine, element-wise.

dpnp.arctan

Trigonometric inverse tangent, element-wise.

dpnp.hypot

Given the "legs" of a right triangle, return its hypotenuse.

dpnp.arctan2

Element-wise arc tangent of x1/x2 choosing the quadrant correctly.

dpnp.degrees

Convert angles from radians to degrees.

dpnp.radians

Convert angles from degrees to radians.

dpnp.unwrap

Unwrap by changing deltas between values to 2*pi complement.

dpnp.deg2rad

Convert angles from degrees to radians.

dpnp.rad2deg

Convert angles from radians to degrees.

dpnp.reduce_hypot

Calculates the square root of the sum of squares of elements in the input array.

Hyperbolic functions

dpnp.sinh

Hyperbolic sine, element-wise.

dpnp.cosh

Hyperbolic cosine, element-wise.

dpnp.tanh

Compute hyperbolic tangent element-wise.

dpnp.arcsinh

Inverse hyperbolic sine, element-wise.

dpnp.arccosh

Inverse hyperbolic cosine, element-wise.

dpnp.arctanh

Hyperbolic inverse tangent, element-wise.

Rounding

dpnp.around

Round an array to the given number of decimals.

dpnp.round

Evenly round to the given number of decimals.

dpnp.rint

Round elements of the array to the nearest integer.

dpnp.floor

Round a number to the nearest integer toward minus infinity.

dpnp.ceil

Compute the ceiling of the input, element-wise.

dpnp.trunc

Compute the truncated value of the input, element-wise.

Sums, products, differences

dpnp.prod

Return the product of array elements over a given axis.

dpnp.sum

Sum of array elements over a given axis.

dpnp.cumprod

Return the cumulative product of elements along a given axis.

dpnp.cumsum

Return the cumulative sum of the elements along a given axis.

dpnp.nancumprod

Return the cumulative product of array elements over a given axis treating Not a Numbers (NaNs) as one.

dpnp.nancumsum

Return the cumulative sum of the elements along a given axis.

dpnp.nansum

Return the sum of array elements over a given axis treating Not a Numbers (NaNs) as zero.

dpnp.nanprod

Return the product of array elements over a given axis treating Not a Numbers (NaNs) as ones.

dpnp.cross

Return the cross product of two (arrays of) vectors.

dpnp.diff

Calculate the n-th discrete difference along the given axis.

dpnp.ediff1d

The differences between consecutive elements of an array.

dpnp.gradient

Return the gradient of an array.

dpnp.trapz

Integrate along the given axis using the composite trapezoidal rule.

Exponents and logarithms

dpnp.exp

Calculate the exponential, element-wise.

dpnp.expm1

Return the exponential of the input array minus one, element-wise.

dpnp.exp2

Calculate 2**p for all p in the input array.

dpnp.log

Natural logarithm, element-wise.

dpnp.log10

Return the base 10 logarithm of the input array, element-wise.

dpnp.log2

Return the base 2 logarithm of the input array, element-wise.

dpnp.log1p

Return the natural logarithm of one plus the input array, element-wise.

dpnp.logaddexp

Calculates log(exp(x1) + exp(x2)), element-wise.

dpnp.logsumexp

Calculates the logarithm of the sum of exponentials of elements in the input array.

Other special functions

Floating point routines

dpnp.signbit

Returns element-wise True where signbit is set (less than zero).

dpnp.copysign

Change the sign of x1 to that of x2, element-wise.

Rational routines

Arithmetic operations

dpnp.add

Add arguments element-wise.

dpnp.reciprocal

Return the reciprocal of the argument, element-wise.

dpnp.negative

Numerical negative, element-wise.

dpnp.positive

Numerical positive, element-wise.

dpnp.multiply

Multiply arguments element-wise.

dpnp.divide

Divide arguments element-wise.

dpnp.power

First array elements raised to powers from second array, element-wise.

dpnp.subtract

Subtract arguments, element-wise.

dpnp.true_divide

Divide arguments element-wise.

dpnp.floor_divide

Compute the largest integer smaller or equal to the division of the inputs.

dpnp.fmod

Returns the element-wise remainder of division.

dpnp.mod

Compute element-wise remainder of division.

dpnp.modf

Return the fractional and integral parts of an array, element-wise.

dpnp.remainder

Return element-wise remainder of division.

Handling complex numbers

dpnp.angle

Return the angle of the complex argument.

dpnp.real

Return the real part of the complex argument.

dpnp.imag

Return the imaginary part of the complex argument.

dpnp.conj

Return the complex conjugate, element-wise.

dpnp.conjugate

Return the complex conjugate, element-wise.

dpnp.proj

Returns the projection of a number onto the Riemann sphere.

Extrema Finding

dpnp.maximum

Element-wise maximum of array elements.

dpnp.max

Return the maximum of an array or maximum along an axis.

dpnp.amax

Return the maximum of an array or maximum along an axis.

dpnp.fmax

Element-wise maximum of array elements.

dpnp.nanmax

Return the maximum of an array or maximum along an axis, ignoring any NaNs.

dpnp.minimum

Element-wise minimum of array elements.

dpnp.min

Return the minimum of an array or maximum along an axis.

dpnp.amin

Return the minimum of an array or minimum along an axis.

dpnp.fmin

Element-wise minimum of array elements.

dpnp.nanmin

Return the minimum of an array or minimum along an axis, ignoring any NaNs.

Miscellaneous

dpnp.convolve

Returns the discrete, linear convolution of two one-dimensional sequences.

dpnp.clip

Clip (limit) the values in an array.

dpnp.sqrt

Return the non-negative square-root of an array, element-wise.

dpnp.cbrt

Return the cube-root of an array, element-wise.

dpnp.square

Return the element-wise square of the input.

dpnp.rsqrt

Computes the reciprocal square-root for each element x_i for input array x.

dpnp.abs

Calculate the absolute value element-wise.

dpnp.absolute

Calculate the absolute value element-wise.

dpnp.fabs

Compute the absolute values element-wise.

dpnp.sign

Returns an element-wise indication of the sign of a number.