How to plot transfer functions?

328 Ansichten (letzte 30 Tage)
Ali Deniz
Ali Deniz am 29 Nov. 2021
Beantwortet: Adem am 7 Feb. 2024
How can I plot this state space like the graph I attached by using tf() and step() command? Thank you!
I2/E0=1/(s^3+s^2+3*s+1)

Akzeptierte Antwort

Yusuf Suer Erdem
Yusuf Suer Erdem am 29 Nov. 2021
Bearbeitet: Yusuf Suer Erdem am 29 Nov. 2021
Try these codes below please;
clc; clear; close all;
numerator = 1;
denominator = [1,1,3,1];
sys = tf(numerator,denominator);
yyaxis left
plot(step(sys));
yyaxis right
plot(impulse(sys));

Weitere Antworten (1)

Adem
Adem am 7 Feb. 2024
clc; clear; close all;
numerator = 1;
denominator = [1,1,3,1];
sys = tf(numerator,denominator);
yyaxis left
plot(step(sys));
yyaxis right
plot(impulse(sys));

Kategorien

Mehr zu Dynamic System Models 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!

Translated by