Previous Up Next

6.3.19  Sorting a list by decreasing order

The SortD command sorts a list or a matrix in decreasing order.

Examples

SortD([3,4,2])
     

4,3,2
          
SortD([[3,4,2],[6,4,5]])
     


432
465


          

Previous Up Next