Iteratively fill structure with custom class objects
4 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I would like to run a loop throgh a table that takes values from each row and uses them as input parameters for custom classes and adds them to a structure so I can use them later. This is what I have so far:
rows = height(table);
for row = 1:rows
strat_1 = custom_class(table2array(table(row,1)),table2array(table(row,1)));
end
That is, strat_1 is supposed to be part of the loop and added to a structure in each iteration
0 Commenti
Risposte (1)
Matt J
il 19 Gen 2022
Modificato: Matt J
il 19 Gen 2022
I'm puzzled as to why your custom_class() constructor requires the same input argument twice, but this is how I'd do it.
rows = height(table);
A=table2array(table);
clear strat
for row = rows:-1:1
input=A(i,:);
strat(i) = custom_class(input,input);
end
2 Commenti
Matt J
il 19 Gen 2022
You're welcome, but if your question has been addressed, please Accept-click the answer.
Vedere anche
Categorie
Scopri di più su Loops and Conditional Statements in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!