read replace decimals ,. commas to dot from txt files
9 次查看(过去 30 天)
显示 更早的评论
Hi there I am trying to import a file but the %%f%ff got commas as for decimals not possible to import if not had not written with dot. how can I replace thein in txt file?
0 个评论
回答(3 个)
David Sanchez
2013-7-12
The comma is an issue in Matlab, could you use dots instead?
-0.229447 0.003749 0.003599
-0.056431 2.009800 1.003600
-0.229128 0.004065 0.004236
-0.228810 0.004382 0.003599
If 'data.txt' is your containing file, the following should work:
fid = fopen('data.txt');
my_data = fscanf(fid, '%f %f %f', [3 4]);
fclose(fid);
0 个评论
Hemanth Kumar Padmanaban
2015-12-14
hallo friends, even i am facing the same Problem for conversion between european number System and International number System. I am trying with
strrep(t, ',','.');
but however ist not that suitable. kindly let me know if any one have found a better solution. Thanks
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Large Files and Big Data 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!