why textscan did not work ?
Mostrar comentarios más antiguos
hi, I have file as:
1488844,3,2005-09-06
822109,5,2005-05-13
885013,4,2005-10-19
I used textscan to get each column alone then I can deal with date to convert it , but no give what I need. thanks
1 comentario
Fangjun Jiang
el 3 de Nov. de 2011
You've been here long enough to learn to use the {}Code format.
Respuestas (1)
Walter Roberson
el 3 de Nov. de 2011
textscan(fid, '%f%f%s', 'Delimiter', ',')
3 comentarios
huda nawaf
el 3 de Nov. de 2011
huda nawaf
el 3 de Nov. de 2011
Walter Roberson
el 3 de Nov. de 2011
datenum(c{3},'yyyy-mm-dd')
Categorías
Más información sobre Dates and Time en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!