Find the maximum two numbers of every column of a matrix.
Example:
If we input a matrix
A = [ 1 2 4
6 0 3
4 1 5 ]we should get
B = [ 6 2 5
4 1 4 ]
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers231
Suggested Problems
-
How to find the position of an element in a vector without using the find function
2815 Solvers
-
Project Euler: Problem 3, Largest prime factor
1792 Solvers
-
1351 Solvers
-
448 Solvers
-
608 Solvers
More from this Author17
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.