Way to import time series date string as mm-dd-yyyy

1 visualización (últimos 30 días)
Chris
Chris el 20 de Sept. de 2011
My data is in the format of mm-dd-yyyy hh:mm:ss however it seems like the time series import tool will only import dates & time data if the format is in dd-mmm-yyyy hh:mm:ss
  1 comentario
Jan
Jan el 20 de Sept. de 2011
What exactly is your question? Can you post the type of the available input and wanted output?

Iniciar sesión para comentar.

Respuesta aceptada

Jan
Jan el 20 de Sept. de 2011
You can convert the data manually:
S1 = '07-12-2011 13:14:15'
D = datenum(S1, 'mm-dd-yyyy HH:MM:SS');
S2 = datestr(D, 'dd-mmm-yyyy HH:MM:SS')

Más respuestas (2)

Chris
Chris el 20 de Sept. de 2011
Hi Jan
I am using the tsimport tool however the date time import only accepts the 3 digit month and not 2 digit month with the time. I have to have both the time and dates in the time series.
  2 comentarios
Jan
Jan el 20 de Sept. de 2011
Sorry for repeating: What is your question? How can we help you?
Fangjun Jiang
Fangjun Jiang el 20 de Sept. de 2011
Time series supports all the data format. What tsimport tool are you using?

Iniciar sesión para comentar.


Chris
Chris el 21 de Sept. de 2011
Thanks when I run tstool, and go file create time series from file. I then select a csv file. Columns A & B which are the date and time are in the format mm:dd:yyy and column b is the time as hh:mm:ss
I would like my time series imported to have both the date and time. However under the specify time vector, define it now date string option for format there is only dd-mmm-yyy hh:mm:ss which unfortunately requires a 3 character month such as 20-sep-2011. Unfortunately my data files are 20-09-2011. Is there a way for it to easily convert the 09 to Sep or have the tstool change the 09 to sep.

Categorías

Más información sobre Dates and Time en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by