I am working in MATLAB and currently have this code:
for i =1:142674:loop_end
data = textread('Results.txt', '%s');
name = data{i};
end
However, I want the name of the data point I select to be stored into an Array where the first name would be the first string in the array and so forth. So at the end I have an array containing all the names gathered from the loop.