I have a folder, which contains multiple .mat file. I need to extract a particular table from all the multiple .mat files inside the folder. How to do that? For eg: I have a folder named "myfoler" consist of multiple .mat files named as "test100, test200,.....test 1000". Now i want to extract 'x' and 'y' table for all the .mat file. I used
m = matfile('test100.mat');
theTable1 = m.X;
theTable2 = m.Y;
But this is for single .mat file. I want to run in it a loop.
1 Comment
Direct link to this comment
https://in.mathworks.com/matlabcentral/answers/392119-extracting-data-from-a-folder-consisting-of-mat-file#comment_552304
Direct link to this comment
https://in.mathworks.com/matlabcentral/answers/392119-extracting-data-from-a-folder-consisting-of-mat-file#comment_552304
Sign in to comment.