Compare two matrices and select max one based on the a column
Show older comments
I have two matrixes and I want to compare the last column. Then select the max one and the whole corresponding row.
For example
A = [ 1 , 4, 5; 1, 4, 6];
B = [2, 6, 6; 2, 5 , 9];
The next matrix based on the last column max will be
C = [2, 6, 6; 2, 5 , 9];
Anyway to help, please
Accepted Answer
More Answers (1)
madhan ravi
on 17 Mar 2020
C = max(A,B)
3 Comments
Yaser Khojah
on 17 Mar 2020
Edited: Yaser Khojah
on 17 Mar 2020
madhan ravi
on 17 Mar 2020
Illustrate the answer if the B were to be
B = [2, 6, 4; 2, 5 , 9];
Yaser Khojah
on 17 Mar 2020
Categories
Find more on Loops and Conditional Statements in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!