How to choose the values from matrix
6 views (last 30 days)
Show older comments
As Excel is having V-Lookup & H-Lookup command. Does MatLab is having any method to choose the value from matrix dependent on the two values in left column values and Top row values.
Please any body share the knowledge in this regard.
Thank you.
3 Comments
Accepted Answer
TAB
on 15 Feb 2013
Do you mean something like this...
Data = [1 2 3 4 5;
10 5 6 7 9;
20 8 47 9 6;
30 4 7 25 12]
FirstCol_Val = 20;
FirstRow_Val = 4;
FoundValue = Data((Data(:,1)==FirstCol_Val), (Data(1,:)==FirstRow_Val));
More Answers (0)
See Also
Categories
Find more on Logical 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!