problem reading a text data
    4 Ansichten (letzte 30 Tage)
  
       Ältere Kommentare anzeigen
    
´hi all!
i have a big text file. Its form is :
32761  43718  0  0
10847  21163  0  0
22127  10953  0  0
21791 10780 0 0
44054 33255 0 0
32990 43895 0 0
i wrote this
fileID = fopen('data_0db.txt');
A=textscan(fileID,'%d %d %d %d ');
fclose(fileID)
the Proble are the Spaces btween some Rows. How could i eleminate the Spaces in matlab?
thank you all
0 Kommentare
Akzeptierte Antwort
  Jan
      
      
 am 10 Jul. 2013
        fileID = fopen('data_0db.txt');
A = fscanf(fileID,'%d', inf);
fclose(fileID)
A = reshape(A, 4, []).';
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
				Mehr zu Low-Level File I/O finden Sie in Help Center und File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
