The fmod()
function in NumPy is used to return the remainder of the division of two input arrays (
numpy.fmod(x1, x2, /, out=None, *, where=True)
The fmod()
function takes the following parameter values:
x1
: This represents an input array of elements, which are the dividends. This is a required parameter value.x2
: This represents an array that contains the divisors. This is a required parameter value.out
: This represents the location where the result is stored. This is an optional parameter value. where
: This is the condition over which the input is being broadcast. At a given location where this condition is True
, the resulting array will be set to the ufunc
result. Otherwise, the resulting array will retain its original value. This is an optional parameter value. **kwargs
: This represents the other keyword arguments. This is an optional parameter value.
The fmod()
function returns an array that contains the remainder of the division of the two given input arrays.
import numpy as np# creating input arraysx1 = np.array([1, 2, 3])x2 = np.array([1, 2, 2])# implementing the fmod() functionmyarray = np.fmod(x1, x2)print(x1)print(x2)print("The remainders values of the division are: ", myarray)
numpy
module.x1
and x2
, using the array()
function.numpy.fmod()
function on the input arrays. We assign the result to a variable called myarray
.x1
and x2
to the console.myarray
to the console.