Effacer les filtres
Effacer les filtres

Upload files with almost the same name in different components of a matrix

2 vues (au cours des 30 derniers jours)
Richard Wood
Richard Wood le 28 Nov 2022
Modifié(e) : Richard Wood le 28 Nov 2022
Dear all
Let's imagine that I have multiple files in my current folder, which are as follows: spins-00000000.data, spins-00000001.data, spins-00000002.data, ..., spins-00000132.data. It is important to note that, although the number is added one by one, there are always eight digits. How could I make something like that happen without having to load the files one by one?
spin(:,:,1)=load('D:\Magnetic-Distribution\spins-00000000.data');
spin(:,:,2)=load('D:\Magnetic-Distribution\spins-00000001.data');
...
How could I do this efficiently?

Réponses (1)

David Hill
David Hill le 28 Nov 2022
for k=1:1e4
s=sprintf('%08d.txt',k);
spin(:,:,k)=load(['D:\Magnetic-Distribution\spins-',s]);
end

Catégories

En savoir plus sur Loops and Conditional Statements dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by