i have a 1 dimensional array of floats that i want to sort in
descending order.i did as follows

from numpy import tolist,array,sort
y=array([......]) #may be 1000 items
z=sort(y)
l=z.tolist()
l.reverse()
rl=array(l)

now rl is a 1 dim array sorted in descending order.
but i am looking for a better,compact way to do this.can someone help?

_______________________________________________
Numpy-discussion mailing list
[email protected]
http://projects.scipy.org/mailman/listinfo/numpy-discussion

Reply via email to