Previous Up Next

6.3.18  Sorting a list by increasing order

The SortA command sorts a list or a matrix in increasing order.

Examples

SortA([3,4,2])
     

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


234
564


          

Previous Up Next