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

3 vues (au cours des 30 derniers jours)
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

Réponses (1)

Stephen23
Stephen23 le 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.

Catégories

En savoir plus sur Biomedical Imaging dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by