How can I simulate time response of dynamic system to arbitrary inputs without shown the arbitary input on my plot?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Bob
il 11 Apr 2016
Risposto: Sebastian Castro
il 12 Apr 2016
How can I simulate time response of dynamic system to arbitrary inputs without shown the arbitary input on my plot?
H = [tf([2 5 1],[1 2 3])];
[u,t] = gensig('square',4,10,0.1);
lsim(H,u,t)
0 Commenti
Risposta accettata
Sebastian Castro
il 12 Apr 2016
If you assign outputs to lsim, you don't get the specialized plot and simply get the output variables. So, if you add an extra line to your code as follows, you're good to go:
H = [tf([2 5 1],[1 2 3])];
[u,t] = gensig('square',4,10,0.1);
[yout,tout]= lsim(H,u,t);
plot(tout,yout)
- Sebastian
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Dynamic System Models 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!