-
numpy.mod(x1, x2[, out]) =
-
Return element-wise remainder of division.
Computes the remainder complementary to the
floor_divide
function. It is equivalent to the Python modulus operator``x1 % x2`` and has the same sign as the divisorx2
. It should not be confused with the Matlab(TM)rem
function.Parameters: x1 : array_like
Dividend array.
x2 : array_like
Divisor array.
out : ndarray, optional
Array into which the output is placed. Its type is preserved and it must be of the right shape to hold the output. See doc.ufuncs.
Returns: y : ndarray
The element-wise remainder of the quotient
floor_divide(x1, x2)
. Returns a scalar if bothx1
andx2
are scalars.See also
-
floor_divide
- Equivalent of Python
//
operator. -
fmod
- Equivalent of the Matlab(TM)
rem
function.
Notes
Returns 0 when
x2
is 0 and bothx1
andx2
are (arrays of) integers.Examples
1234>>> np.remainder([
4
,
7
], [
2
,
3
])
array([
0
,
1
])
>>> np.remainder(np.arange(
7
),
5
)
array([
0
,
1
,
2
,
3
,
4
,
0
,
1
])
-
numpy.mod()

2025-01-10 15:47:30
Please login to continue.