Sort rows of matrix A in an ascending order according to the last column
Example input:
A = [1 2 3;7 8 9;4 5 6];
Example output:
A = [1 2 3;4 5 6;7 8 9];
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers99
Suggested Problems
-
Find common elements in matrix rows
2720 Solvers
-
Create an n-by-n null matrix and fill with ones certain positions
727 Solvers
-
Sum the numbers on the main diagonal
616 Solvers
-
Sum the 'edge' values of a matrix
404 Solvers
-
Matrix of almost all zeros, except for main diagonal
191 Solvers
More from this Author9
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Additional test cases have been added.