Is there a built-in function or a very simple way of finding the index of n largest elements in a list or a numpy array?
K = [1,2,2,4,5,5,6,10]
This should work:
K = [1,2,2,4,5,5,6,10] num = 5 print 'K %s.' % (sorted(K, reverse=True)[:num])