I have a number in one matrix, how do I find this number in a corresponding matrix?
Show older comments
I have a number in a matrix say 17 and I need to find this row number(17) in another matrix and find the corresponding value in that cell.
How do I pull the corresponding value for the row from another matrix?
1 Comment
José-Luis
on 14 May 2014
logical_index = some_matrix == 17;
Not sure I understand what you mean.
Accepted Answer
More Answers (0)
Categories
Find more on Resizing and Reshaping Matrices 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!