Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

How do i convert a text format into respective numeric vectors?

1 visualización (últimos 30 días)
Parth Sarathi
Parth Sarathi el 17 de Mayo de 2016
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
I am having a 'raw' file with 3 columns as in the attached file 'test'. I want to read the first column as datenum or datevec but it is not doing so. Can you please let me know how can i convert the first column into its respective vector. So that i can read it as datenum function. Thanking you, Kind regards, Parth

Respuestas (1)

Walter Roberson
Walter Roberson el 17 de Mayo de 2016
cellfun(@(S) datetime(S(2:end-1)), raw(:,1))
The quote marks in the cell are interfering with the automatic interpretation of the data.

Community Treasure Hunt

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

Start Hunting!

Translated by