Running multiple simulations simultaneously
5 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Deepa Maheshvare
am 21 Okt. 2019
Beantwortet: Sai Sri Pathuri
am 6 Nov. 2019
I'm solving a system of odes present in function1 for different set of initial conditions.
for i = 1:10
x0 = rand(10,1)
[t x] = ode15s(@(t,s) function1(t,s), tspan , x0);
field = "x" + num2str(i);
soln.(field) = x
end
I'd like to run these simulations parallely, i.e. for all i's at once.
Could someone suggest how this can be done?
2 Kommentare
Akzeptierte Antwort
Sai Sri Pathuri
am 6 Nov. 2019
You may use parfor loop to execute the iterations parallelly. The documentation for parfor loop can be referred from the following link
0 Kommentare
Weitere Antworten (0)
Siehe auch
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!