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
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