For loop with running parameter out of struct
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hello, I would like to run a for loop like this:
for Test.i=1:100 do something end
My intention is to have one struct where all my variables from my quite small script are stored and I don't mess up the workspace of the whole model.
Thanks in advance
0 Kommentare
Antworten (2)
madhan ravi
am 24 Okt. 2018
Bearbeitet: madhan ravi
am 24 Okt. 2018
for i=1:100
Test.x(i)=i ; %an example
Test.y(i)=x.^(i) ;
end
save('mymat.mat',Test)
0 Kommentare
Siehe auch
Kategorien
Mehr zu Structures finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!