readtable xlsx with date
    5 visualizzazioni (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    
   Hi every one,
i have data in many excell scheets. I wrote a code to read the sheets:
numVars = 6;
VarSheet=1 ;
 varNames = {'Date','Time','M1','T1','L1','L2'} ;
 varTypes = {'char','char','char','double','double','double'} ;
 dataRange = 'A8:F47';
 opts = spreadsheetImportOptions('NumVariables',numVars,'VariableNames',varNames,'VariableTypes',varTypes,'DataRange', dataRange...
      'Sheet',VarSheet);
  % preview('VergleichsmessungSep3.xlsx',opts)
  Meas1 = readtable('Test.xlsx',opts);
How could read Date and Time coulmns and use it for plots? 
0 Commenti
Risposta accettata
Più risposte (1)
Vedere anche
Categorie
				Scopri di più su Spreadsheets in Help Center e File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!