Help iteration for loop and tables vertcat
Ältere Kommentare anzeigen
Hi,
- I have a varible C which is a 45x2 double with the possible combinations of numbers, #, from 1 to 10 (meaning 10 birds).
- Per bird I have a table named tablevars#, where # are numbers from 1 to 10.
- I want to have inside the for cycle the total table that will change per combination (matches each row of C per iteration i).
tablevars1
tablevars2
...
w = [1:10];
p = 2;
C = nchoosek(w,p);
u = length(C);
for i = 1:u
total = vertcat(?);
...
end
Thank you!
1 Kommentar
Stephen23
am 27 Mai 2022
Do NOT force meta-data (e.g. pseudo-indices) into variable names:
Akzeptierte Antwort
Weitere Antworten (1)
Walter Roberson
am 27 Mai 2022
1 Stimme
Don't do this. put the tables in a cell array and use cell indexing instead of dynamic variable names.
Kategorien
Mehr zu Logical finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!