retrieving data from excel sheet
显示 更早的评论
how can I search a name in the excel sheet column, the code should return the 0 or 1, or found or not found.
回答(1 个)
Walter Roberson
2020-7-14
0 个投票
readtable() the needed columns. ismember() the desired name with the table column variable as the second parameter.
Note: if you are doing that "distance between cities" exercise then you will have more work than I described above, because of the header line
4 个评论
abdul rehman
2020-7-14
Walter Roberson
2020-7-14
if you are doing the distance assignment then xlsread and take the third output.
Note that for that assignment you need to know where the match is, not just whether there is a match.
abdul rehman
2020-7-14
Walter Roberson
2020-7-14
[~, ~, raw] = xlsread('TheFileName.xlsx');
类别
在 帮助中心 和 File Exchange 中查找有关 Spreadsheets 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!