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?

 Réponse acceptée

Jan
Jan le 29 Avr 2019
Modifié(e) : Jan le 29 Avr 2019

1 vote

What about:
varTypes = {'datetime','datetime','char','double','double','double'} ;
What exactly does "use it for plots" mean?

3 commentaires

Jan
Jan le 29 Avr 2019
[MOVED from section for answers] Rica wrote:
the goal is to build a datetime Array from Column 1 and column 2. This Array will be used in ploting data in a graphics.
I think your hint to use datetime instead of Char will help me solve this task.
Thank you Jan.
Jan
Jan le 29 Avr 2019
@Rica: I'm glad if I could help you.
Please post comments in the section for comments.
Rica
Rica le 30 Avr 2019
Thanks,
I solve it like this:
DT=Date+timeofday(Time).

Connectez-vous pour commenter.

Plus de réponses (1)

Question posée :

le 29 Avr 2019

Commenté :

le 30 Avr 2019

Community Treasure Hunt

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

Start Hunting!

Translated by