Effacer les filtres
Effacer les filtres

Load variables from subfolders

3 vues (au cours des 30 derniers jours)
Joel Schelander
Joel Schelander le 8 Avr 2021
Modifié(e) : Jan le 8 Avr 2021
I have two variables called ARG_1 and ARG_2
The script I use is in the folder MATLAB. The variables are within subfolders: MATLAB/Ruralv/Appr.
I use this to load the variables, but since they are in subfolders it won't work.
for x= 1:2
load (['ARG_x' num2str(x) '.mat'])
end
  1 commentaire
Jan
Jan le 8 Avr 2021
Modifié(e) : Jan le 8 Avr 2021
Please post the error message instead of the general statement "it won't work".

Connectez-vous pour commenter.

Réponse acceptée

Jan
Jan le 8 Avr 2021
Modifié(e) : Jan le 8 Avr 2021
I guess, that the loading does not work due to the subfolders?
Where is the folder "MATLAB"? Inside your user folder and you are working on Linux or MacOS? Then:
for x = 1:2
load(fullfile('~/MATLAB/Ruralv/Appr', sprintf('ARG_%d.mat', x));
end

Plus de réponses (0)

Catégories

En savoir plus sur File Operations dans Help Center et File Exchange

Produits


Version

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by