For a lab report I am writing, I need to analyze about 90 datasets. Unfortunately, they are all in text files with names such as "small single crystal si iv curve part 1 106w_m^2", with no file extension. I have them all in one folder. I would like to input each one to its own variable with it's original name for manipulation later. This requires replacing the spaces in the file name with underscores and removing the carat. I would like to make an .m file that will do this for me. So far I have this:
function [t]=makedata()
%makes data
x=dir;
i=0;
for l=3:length(x)
i=i+1;
y=x(l).name;
t=y(1:end-5);
t=regexprep(t,' ','_');
t=importdata(y);
end
end
Obviously this code does not work. I know my MATLAB skills are weak, so any help would be appreciated. So far, my code uses the dir command to collect data on everything in the directory, then loops through that data changing the name to something that can be output, then importing the data.
How can I make this work? I don't know how to make it output variables with varying names. I researched using the eval command but don't know how to successfully implement it, plus the FAQ said to avoid that method.
Thank you for any help. I haven't been able to find a solutoin to this online yet.