Correct syntax for textscan() function
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
John
el 13 de Feb. de 2012
Hello there,
Would anybody know the correct syntax to import a column of time values from a text file using the textscan() function. The format of the time values is like this:
12:57:00
15:19:00
08:07:00
10:36:00
Many thanks
0 comentarios
Respuesta aceptada
Friedrich
el 13 de Feb. de 2012
Hi,
try %s as format string
out = textscan(fid,'%s')
(fid is the filepointer created by fopen)
4 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Text Data Preparation en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!