Assgin a name to sequentially imported files

1 view (last 30 days)
Experts,
I have imported 8 files sequentially using this piece of code
for i=1:8
fileName=['data' num2str(i)];
dataStruct.(fileName)=load([fileName '.csv']);
end
Now I want to assign a variable to the first imported file, do some operations on it and then save the results. Then, assign the second imported file to the same variable and do the same operations. Then the third one and so on. How can I do that? I mention the WRONG way that I used to be clear below:
for k=1:8
M5=dataStruct.data(k);
[I,J]=size(M5);
BLAH...BLA... BLAH
end
Which results in this error {{{Reference to non-existent field 'data'.}}} Can you please help me? I do appreciate your attention
  1 Comment
Stephen23
Stephen23 on 25 Feb 2018
Edited: Stephen23 on 25 Feb 2018
The cause of the error is quite straightforward: you define each fieldname like this:
['data' num2str(i)]
giving filenames data1, data2, etc. And then you try to access the field data, which does not exist, thus the error. Note that indexing into that field data(k) is totally unrelated to the fieldname.

Sign in to comment.

Accepted Answer

Stephen23
Stephen23 on 25 Feb 2018
Edited: Stephen23 on 25 Feb 2018
I don't see any reason why you need to use a structure: it just makes accessing the data more complex for you and serves no obvious purpose. A cell array would be much simpler:
N = 8;
C = cell(1,N);
for k = 1:N
fileName = sprintf('data%d.csv',k);
C{k} = load(fileName,'-ascii');
end
And then accessing the data in the cell array is trivial with just indexing:
for k = 1:numel(C)
M = C{k};
...
end
If you really want to use a structure then you could use a non-scalar structure:
N = 8;
S = struct('data',cell(1,N));
for k = 1:8
fileName = sprintf('data%d.csv',k);
S(k).data = load(fileName,'-ascii');
end
and then simply
for k = 1:numel(S)
M = S(k).data;
...
end

More Answers (2)

Image Analyst
Image Analyst on 25 Feb 2018

per isakson
per isakson on 25 Feb 2018
Edited: per isakson on 25 Feb 2018
Given dataStruct. An alternative approach
results = structfun( @do_some_operations_on, dataStruct, 'uni',false );
where
function out = do_some_operations_on( data )
BLAH ... BLA... BLAH
end

Categories

Find more on Structures in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!