saving a variable from workspace for every iteration
Info
Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.
Ältere Kommentare anzeigen
Hello everyone,
i wrote a matlab code and i want to save the result (Table) for each iteration (ii). How can i do it?!
T = table(ii,tau(i),k(i,ii),delta(ii),MP(ii),tr(ii),ss_y(ii),Max_val_uk(ii),Sat_time(ii),ss_uk(ii));
T.Properties.VariableNames = {'Nr','tau','k','delta','Overshoot','RiseTime','StateSpaceY','MaxValu','SaturationTime','StateSpace_uk'}
Tnew = [Tnew;T]
Thanks in advance
Ahmed
3 Kommentare
Walter Roberson
am 15 Dez. 2019
Cell array of tables.
Ahmed Almashharawi
am 15 Dez. 2019
Walter Roberson
am 15 Dez. 2019
all_tables{K} = Tnew;
Antworten (0)
Diese Frage ist geschlossen.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!