Azzera filtri
Azzera filtri

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 visualizzazioni (ultimi 30 giorni)

Risposta accettata

Purushottama Rao
Purushottama Rao il 4 Mag 2015
xlsread function will help you.
FileName = 'data.xls';
PathName = cd;
Table=FileName;
starttime = xlsread(Table, 'c2:c100');
sample = xlsread(Table, 'b2:b100');
....
  1 Commento
neelam rawat
neelam rawat il 4 Mag 2015
Modificato: neelam rawat il 4 Mag 2015
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?

Accedi per commentare.

Più risposte (0)

Community Treasure Hunt

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

Start Hunting!

Translated by