How do I read commas as decimal points when reading a text file?
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Sam G.
el 7 de Abr. de 2011
Comentada: Michael Haas
el 8 de Dic. de 2016
I have a file that I'm trying to read with numerical values that use commas as decimal points. For example...
0 21,875000 120,700000 0,000000
instead of...
0 21.875000 120.700000 0.000000
I've used textscan to read and parse lines in other files.
line = fgetl(fid);
data = textscan(line,'%d %n %n %n',1,'delimiter','\n');
Can I get Matlab to recognize the commas as decimal points?
0 comentarios
Respuesta aceptada
Paulo Silva
el 7 de Abr. de 2011
after reading the file replace the decimal points by commas
data=strrep(data,'.',',')
1 comentario
Más respuestas (0)
Ver también
Categorías
Más información sobre Text Files 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!