how to search specific data from matlab to excel
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Mettri Wibawanti
el 25 de Oct. de 2021
Comentada: Ive J
el 26 de Oct. de 2021
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
0 comentarios
Respuesta aceptada
Ive J
el 25 de Oct. de 2021
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 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Spreadsheets en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!