excel x & y
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Alireza Lashgary
il 4 Ago 2016
Commentato: Alireza Lashgary
il 4 Ago 2016
Hi there i read two columns from an excel file. first column is x and second is y. i get x from user , how can a i find y for that x?

for example user inputs 0.531 i must show 0.5103 or user inputs 0.536 i must show 0.5154
my matrix is 2x1000 ( 2 columns and 1000 rows) please help
0 Commenti
Risposta accettata
Azzi Abdelmalek
il 4 Ago 2016
Modificato: Azzi Abdelmalek
il 4 Ago 2016
If M is your matrix
M=[0.5310 0.5103;0.5320 .5080;0.5330 0.5144]
x=0.5310
idx=ismember(M(:,1),x)
y=M(idx,2)
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Spreadsheets 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!