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?

2 次查看(过去 30 天)

采纳的回答

Purushottama Rao
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');
....
  1 个评论
neelam rawat
neelam rawat 2015-5-4
编辑:neelam rawat 2015-5-4
thanku sir for replying...can u tell me what this pathname=cd specifies? and after entering this command in matlab2013 error occurs which says an unexpected matlab operator......please suggest me if my file is in folder named software2013 in H drive how can i write this command?

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Data Import from MATLAB 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by