Is there any character or character combination that MATLAB interprets as comments, when importing data from text files? Being that when it detects it at the beginning of a
Actually, your data is not consistent, as you must have the same number of column for each line.
Apart from that, using '%' as comments will be correctly recognized by importdata:
%12 31
12 32
32 22
%abc
13 33
31 33
%lffffdd
77 7
66 6
%33 33
12 31
31 23
data = importdata('file.dat')
Otherwise use textscan to specify arbitrary comment symbols:
//12 31
12 32
32 22
//abc
13 33
31 33
//lffffdd
77 7
66 6
//33 33
12 31
31 23
fid = fopen('file2.dat');
data = textscan(fid, '%f %f', 'CommentStyle','//', 'CollectOutput',true);
data = cell2mat(data);
fclose(fid);