how to change the integrator initial conditions?
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
In simulink I am using the integrator block. I know that the initial condition defaults to t=0. How would I change that so my initial condition starts at t=9?
0 Commenti
Risposte (1)
stozaki
il 5 Feb 2020
Hello,
ret = find_system(bdroot(gcs),'BlockType','Integrator')
for N = 1:length(ret)
set_param(ret{N},'InitialCondition','9')
end
Please try its script.
2 Commenti
stozaki
il 8 Feb 2020
I attached initialize Function model.
Please see initialize Function
Vedere anche
Categorie
Scopri di più su General Applications 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!