How to choose the values from matrix

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 commentaires

Azzi Abdelmalek
Azzi Abdelmalek le 15 Fév 2013
What does that mean?
Rupesh
Rupesh le 15 Fév 2013
I want to choose the value from matrix which based on the two values. One value from first column & one value from the first row is to be refered to find the required value. eg. Say a table containing a pump details & a Pump is to be selected based on the discharge quantity & the operating Head of pump.
Azzi Abdelmalek
Azzi Abdelmalek le 15 Fév 2013
Can you illustrate with a short example?

Connectez-vous pour commenter.

 Réponse acceptée

TAB
TAB le 15 Fév 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));

Plus de réponses (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by