Q:

Write a NumPy program to get the n largest values of an array

0

Write a NumPy program to get the n largest values of an array.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

import numpy as np
x = np.arange(10)
print("Original array:")
print(x)
np.random.shuffle(x)
n = 1
print (x[np.argsort(x)[-n:]])

Sample Output:

Original array:                                                        
[0 1 2 3 4 5 6 7 8 9]                                                  
[9]

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now