How to choose the values from matrix
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commenti
Risposta accettata
TAB
il 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));
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Logical in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!