How to run through many variables at a different set of times continuously?
    4 visualizzazioni (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    
There are 200 O's and each O lasts 100 minutes, so I need to run the simulation for t=20000 minutes and then every 100 minutes I need the simulation to jump to the next O. I'm really stuck on this and can’t figure out a way around it does anyone have any suggestions to how I can achieve this? 
ID = '0000';                                  % text document
t = 1:100;                                     % time in minutes!
O = 1;                                          %  There are 200 O's
[x, y , z] = pst(ID,t,text_document); 
2 Commenti
Risposte (1)
  Sulaymon Eshkabilov
      
 il 16 Giu 2019
        Probably, you can employ for loop (ii = 1:200) then combine/concatenate all evaloved values into separate variable(s). 
e.g. 
ID = '0000';                                  % text document
for ii=1:200
t = 1:100;                                     
Os = O(ii);                                    
[x(ii,:), y(ii,:) , z(ii,:)] = pst(ID,t,text_document); 
end
...
1 Commento
  Stephen23
      
      
 il 17 Giu 2019
				Remember to preallocate the output arrays before the loop:
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!



