how to search specific data from matlab to excel

조회 수: 1 (최근 30일)
Mettri Wibawanti
Mettri Wibawanti 2021년 10월 25일
댓글: Ive J 2021년 10월 26일
how to search specific data from matlab to excel and then display the row that include the data i've searched to matlab, for example i have an excel data
R1280XS 11 12 10
B2015AT 14 10 10
D1112FM 10 14 15
when i search R1280XS at matlab, 11 12 10 will display in matlab
please help me, i'm stuck with it

채택된 답변

Ive J
Ive J 2021년 10월 25일
tab = readtable('myExcel.xlsx'); % see doc for more options
tab(ismember(tab.(1), 'R1280XS'), :) % the row at which the input str matches the first table's column
  댓글 수: 2
Mettri Wibawanti
Mettri Wibawanti 2021년 10월 25일
편집: Mettri Wibawanti 2021년 10월 25일
its work! thank you so much, but may i ask again, how if i use like
T = input ('plate number :','s'); %and then i put R1280XS
tab(ismember(tab.(1), 'T'), :)
why it can't shows it ? thank you, i really appreciate your help :)
Ive J
Ive J 2021년 10월 26일
Just change your second line to:
tab(ismember(tab.(1), T), :)

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Spreadsheets에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by