Filter löschen
Filter löschen

How to write datetime in a plot?

1 Ansicht (letzte 30 Tage)
Diego
Diego am 31 Jan. 2014
Kommentiert: Mischa Kim am 13 Feb. 2014
I want to read a file.csv but my problem is that i don't know how can I represent in a plot the hour.
My goal is to represent a number as a datetime but I don't Know if it's possible to convert it as in the next example:
131212 --> HH:MM:SS --> 13:12:12
And then put this number in that format in an x-axis in a plot.
Thanks!!!

Akzeptierte Antwort

Mischa Kim
Mischa Kim am 31 Jan. 2014
Bearbeitet: Mischa Kim am 31 Jan. 2014
This should do:
T0 = '131212';
T0Vec = [2000,0,0,str2double(T0(1:2)),str2double(T0(3:4)),str2double(T0(5:6))];
T0Str = datestr(T0Vec,'HH:MM:SS');
Once you have the string you can put it on the xlabel for your plot or add it as a text element.
  14 Kommentare
Diego
Diego am 12 Feb. 2014
Yes I wanna do this! I'll try to do it!
I apologize for the confusion, I want to say Mischa! I was writing so quickly...!
Mischa Kim
Mischa Kim am 13 Feb. 2014
Hello Diego. Good to see you again. Would you mind opening another question? It is not really on the topic of your original question, which would make it challening to find for other users. Plus this thread is getting kind of long.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Line Plots finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by