Storing variables from an array loop
1 次查看(过去 30 天)
显示 更早的评论
Hello,
I'm coding to import several .txt files in matlab and create as many matrix as the number of file. I created the basic loop but I get stuck when it comes to store my dataArray without keeping overwriting it during the loop.
Here the code that I'm trying to work on to obtain new matrix in the workspace for each loop.
delimiter = '\t';
startRow = 2;
formatSpec = '%f%f%f%f%f%f%[^\n\r]';
for k = 1:3
% Read the file.
textFileName = ['SJ' num2str(k) '.txt'];
if exist(textFileName, 'file')
fid = fopen(textFileName, 'rt');
dataArray = textscan(fid, formatSpec, 'Delimiter', delimiter, 'EmptyValue' ,NaN,'HeaderLines' ,startRow-1, 'ReturnOnError', false);
fclose(fid);
else
fprintf('File %s does not exist.\n', textFileName);
end
%Create matrix
GRFdata = [dataArray{1:end-1}];
end
The issue is that GRFdata keeps overwriting whilst I would obtain GRFdata1, GRFdata2, etc.
Anyone could point me out the right way to proceed, please? Thanks
4 个评论
Stephen23
2015-1-17
Basically you should not do this. Using dynamically defined variable names or encoding data within the variable name is a pretty bad idea in MATLAB, as is described on many threads on MATLAB Answers:
The first of these links gives an excellent alternative, which is what you should probably be using for your data: structures . In particular you can dynamically assign the field names, which is a much neater solution than dynamically defining variable names.
采纳的回答
Guillaume
2015-1-16
编辑:Guillaume
2015-1-16
While you can dynamically create variable names on the fly, it's almost never a good idea. You lose syntax checking, compiler optimisation, ease of debugging, ease of understanding the code, etc.
The best way is to store your various matrices in a cell array:
GRFdata{k} = [dataArray{1:end-1}];
Referring to these matrices afterward is simply:
m = GRFdata{n}; %replace n by the index of the matrix you want to use
If you really want to use different variable names, use eval:
eval(sprintf('GRFdata%d = [dataArray{1:end-1}]', k)); %eugh!
Accessing these matrices is then:
m = eval(sprintf('GRFdata%d', n)); %eugh!
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Matrix Indexing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!