Write a NumPy program to get the element-wise remainder of an array of division.
import numpy as np x = np.arange(7) print("Original array:") print(x) print("Element-wise remainder of division:") print(np.remainder(x, 5))
Sample Output:
Original array: [0 1 2 3 4 5 6] Element-wise remainder of division: [0 1 2 3 4 0 1]
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Sample Output: