i have a file in flukeviewform software which includes start time,stop time,maximum voltage,minimum voltage, average voltage,duration, date..and if i export this file to microsoft excel then how can i read that excel file in matlab?
1 次查看(过去 30 天)
显示 更早的评论
采纳的回答
Purushottama Rao
2015-5-4
xlsread function will help you.
FileName = 'data.xls';
PathName = cd;
Table=FileName;
starttime = xlsread(Table, 'c2:c100');
sample = xlsread(Table, 'b2:b100');
....
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Data Import from MATLAB 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!