Finding correct data row in excel data file
显示 更早的评论
Hi,
I have excel data files which I read and process in matlab, sometimes the logged data shifts and starts at row 10 instead of row 8, is there a way for matlab to automatically find where the data starts without having to manually set the row?
Below is a screenshot of what I mean:

Thanks
采纳的回答
更多回答(1 个)
Azzi Abdelmalek
2012-8-10
that depends on what kind of data you have, string, numbers,...
[num,text,num_text]=xlsread(YourFile)
- num contains numeric data (class double)
- text contains string data (class cell)
- num_textt contains both numeric and string (class cell)
you don't need to know where are your data, unless there other contents then your matrix of data.
类别
在 帮助中心 和 File Exchange 中查找有关 Characters and Strings 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!