How to extract a value out of different .mat files and save them into an array

조회 수: 19 (최근 30일)
lunduz
lunduz 2019년 11월 24일
답변: TADA 2019년 11월 24일
I have to load multiple .mat files, and in those files I want to get the same value out, and then place it into an array
for examle I have 5 files
load('my_file_1.mat');
load('my_file_2.mat');
load('my_file_3.mat');
load('my_file_4.mat');
load('my_file_5.mat');
and in each of this 5 files is the same variable, that hat in each case an other value, and I want those values saved into an arry.
How can I do that, i'm stuck?
Thanks in advance!

채택된 답변

TADA
TADA 2019년 11월 24일
s = load('my_file_5.mat');
will return a struct, each variable in the file will be put in a field in that struct
if all files have the same fields, you can put them all in a struct array:
for i = 5:-1:1
s(i) = load(['my_file_' num2str(i) '.mat');
end
if you are only interested in specific variables from each file you can tell load to only load the variables you need, like that:
s = load('my_file_5.mat', 'X', 'Y'); % if the variables are called X and Y for instance

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Statistics and Machine Learning Toolbox에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by