Unfortunately I did not find any cleaner solution to this - the problem are of course the brackets at the beginning and end of every line. Here is a solution that reads the file line by line and runs textscan on strings with the brackets cut out. The individual vectors are stored in a cell:
fid = fopen('data.txt', 'r');
data = {};
while 1
tline = fgetl(fid);
if ~ischar(tline); break; end
A = textscan(tline, '%f', 'Delimiter', ',', 'Whitespace', '[ ]L\b\t');
data{end+1} = A{1};
end
fclose(fid);
L is treated as delimiter here. If this information is really crucial for you and you want to perform a type cast to uint64, the above code will have to be modified.
Edit Following the comment of H.Muster, you could read the entire file in one go as follows:
fid = fopen('data.txt', 'r');
A = textscan(fid, '%f', 'Delimiter', ',', 'Whitespace', '[ ]L\b\t');
fclose(fid);
Now A contains a single column vector with all your data. So if you know the sizes of the vectors in every line, you can split A into correctly sized chunks. If not, and every vector can have a different size, you will have to go with the first solution.
long– elyashiv Oct 10 '12 at 10:08