How can i plot transfer function with step signal input?

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)

 Respuesta aceptada

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 comentarios

Thank you
I am glad to be of help!!!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre MATLAB en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 5 de Dic. de 2020

Comentada:

el 5 de Dic. de 2020

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by