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?
7 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Réponse acceptée
Purushottama Rao
le 4 Mai 2015
xlsread function will help you.
FileName = 'data.xls';
PathName = cd;
Table=FileName;
starttime = xlsread(Table, 'c2:c100');
sample = xlsread(Table, 'b2:b100');
....
1 commentaire
Plus de réponses (0)
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
