Sorting a matrix?
|
06-18-2015, 01:48 PM
Post: #1
|
|||
|
|||
Sorting a matrix?
Looking for ideas:
I need to row sort M1, an (n x 4) matrix, in decreasing order of column 4. Then on decreasing order of column 2, if sorted M1 contains more than one row with equal column 4 values. How can this be done? Thanks, -Dale- |
|||
06-18-2015, 03:26 PM
Post: #2
|
|||
|
|||
RE: Sorting a matrix?
This is bulky, but seems to work (better ideas?):
Code:
tnx, -Dale- |
|||
06-19-2015, 04:54 AM
Post: #3
|
|||
|
|||
RE: Sorting a matrix?
Create a sort function, something like
f:=(x,y)->if y[4]!=x[4] then return x[4]>y[4] else return x[2]>y[2] end; then sort(m,f) will sort a matrix m using f as a sort function. |
|||
06-19-2015, 10:28 AM
Post: #4
|
|||
|
|||
RE: Sorting a matrix?
Thank you for your very helpful suggestion! I like compact solutions like this, and I'll add it to my "how to" list for future reference.
-Dale- |
|||
« Next Oldest | Next Newest »
|
User(s) browsing this thread: 1 Guest(s)