Sie sind auf Seite 1von 1

% aplication 1

%F(s)
clc,clear all,close all;
num=[1 -5]; den=[1 1 -6];
F=tf(num,den)
z=zero(F)
p=pole(F)
k=dcgain(num,den)
[num,den]=zp2tf(z,p,k)
F=tf(num,den)

%G(s)
num=[1 1 2 3 0]; den=[1 1 1 1 -1 -1];
G=tf(num,den)
z=zero(G)
p=pole(G)
k=dcgain(num,den)
[num,den]=zp2tf(z,p,k)
G=tf(num,den)

%H(s)
num=[1]; den=[1 -6 -13 0];
H=tf(num,den)
z=zero(H)
p=pole(H)
k=dcgain(num,den)
[num,den]=zp2tf(z,p,k)
H=tf(num,den)

Das könnte Ihnen auch gefallen