system response
Mostrar comentarios más antiguos
Hi everyone, i am trying to obtain a response of a first order system to a step input, however the output the graph depicts doesn't match with what i expected. would someone be kind enough to give me a push in the right direction. the script for the program is thus:
clear all clc k1 = 2e4; k2 = 2e7; k3 = 2e4; c = 2e10; num= [(k1*c) (k1*k2)]; den= [(c*k1*k3) (k1*k2*k3)]; P=tf(num,den); display (P) step (P), grid title('y3 with a step input') %ylim([0 1])
Regards
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Time and Frequency Domain Analysis en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!