how to extract and load images and data from multiple .mat files present in a folder

4 views (last 30 days)
i have a folder containing 3064 .mat files, each mat file contains an image and data regarding that image.I need to load the .mat files and extract data from them

Answers (1)

Stephen23
Stephen23 on 13 Oct 2019
D = 'path to the folder where the files are saved';
S = dir(fullfile(D,'*.mat'));
for k = 1:numel(S)
T = load(fullfile(D,S(k).name));
% do whatever you want with the file data.
end
The imported file data in is the scalar structure T.

Categories

Find more on Biomedical Imaging 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!