transfer function reduction.techniques with matlab 2016b

조회 수: 1 (최근 30일)
priya
priya 2019년 11월 12일
I want to obtain the pole zero plots of this system. I an using MATLAB 2016b. I tried the following code:
s=tf('s');
G1=1/((0.1)*(s));
G2=1/(s+1);
G3=6*(s+5)/(s+10);
H1=5;
G1.InputName='e1';
G1.OutputName='e2';
G2.InputName='e3';
G2.OutputName='e4';
G3.InputName='e4';
G3.OutputName='y';
sum1=sumblk('e1','u','f1','+-');
sum2=sumblk('e3','e2','f2','+-');
f1=e4*5;
OutoutTF = connect(G1,G2,G3,sum1,sum2,'u','y');
But it is not working

답변 (0개)

카테고리

Help CenterFile Exchange에서 Dynamic System Models에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by