jax.numpy.fmod
Warning
This page was created from a pull request (#9655).
jax.numpy.fmodΒΆ
- jax.numpy.fmod(x1, x2)[source]ΒΆ
Returns the element-wise remainder of division.
LAX-backend implementation of
fmod().Original docstring below.
This is the NumPy implementation of the C library function fmod, the remainder has the same sign as the dividend x1. It is equivalent to the Matlab(TM)
remfunction and should not be confused with the Python modulus operatorx1 % x2.- Parameters
x1 (array_like) β Dividend.
x2 (array_like) β Divisor. If
x1.shape != x2.shape, they must be broadcastable to a common shape (which becomes the shape of the output).
- Returns
y β The remainder of the division of x1 by x2. This is a scalar if both x1 and x2 are scalars.
- Return type
array_like