How can i plot transfer function with step signal input?
5 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Mark S
am 5 Dez. 2020
Kommentiert: Ameer Hamza
am 5 Dez. 2020
Hello, I have this transfer function:
sys = tf([2],[1 2]) G(s)
And this is my step input signal:
R(s)= 2/s
How can i combine R(s) and G(s) and plot this.
When I write this in Matlab i can plot only the transfer function withouz my step input singal:
sys = tf([2],[1 2]) G(s)
step(sys)
stepinfo(sys)
0 Kommentare
Akzeptierte Antwort
Ameer Hamza
am 5 Dez. 2020
You can multiplythem together and then use the impulse() function
s = tf('s');
G = 2/(s+2);
R = 2/s;
sys = G*R;
impulse(sys)
2 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Stability Analysis finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!