Nils Wagner wrote:
> Hi all,
> 
> what is the best way to check if the entries (integers)
> of an array are stored in ascending order ?

Hi Nils,

Try np.alltrue( ar[1:] > ar[:-1] ).

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

Reply via email to