How can I change an array name within a for loop using the value of the index?
Mostra commenti meno recenti
for i=1988:2020;
months_i=dates_i.Month;
end
I want the months_i to be read as months_1988, then months_1989, etc because I'm looking at arrays from those ~20 years and am digging into each array with multiple loops underneath. Thank you!
1 Commento
Risposte (1)
Tala
il 29 Mar 2022
0 voti
for i= 1988:2020
month{i} =['month_',num2str(i)];
end

Categorie
Scopri di più su Structures in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!