Write a NumPy program to find the indices of the maximum and minimum values along the given axis of an array
import numpy as np x = np.array([1, 2, 3, 4, 5, 6]) print("Original array: ",x) print("Maximum Values: ",np.argmax(x)) print("Minimum Values: ",np.argmin(x))
Sample Output:
Original array: [1 2 3 4 5 6] Maximum Values: 5 Minimum Values: 0
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:
need an explanation for this answer? contact us directly to get an explanation for this answer