Use the following:
fh = fopen('indices.txt');resC = textscan(fh, '%d %d %d %d %d %d %d %s', 1000);res = cell2mat(resC(1:7))fclose(fh);
textscan
will only read (and return) up to the available number of lines. Note however, that textscan
allocates memory for the number of lines you provide (1000 here), so you want to choose something "wise" there.