You are on page 1of 1

%

%
%
%
%
%

sendo:
k/(1+w^2R1C1R2C2+w[(1-k)R1C1+R1C2+R2C2])
considerando:
K = 2
R1 = R2 = R = 1
C1 = C2 = 1

R1 = 1;
R2 = 1;
C1 = 1;
C2 = 1;
K = 2;
syms s z;
x = K/(1+s^2*R1*C1*R2*C2+s*[(1-K)*R1*C1+R1*C2+R2*C2]);
X = ztrans(x,s,z);
simplify(X);
pretty(ans)

You might also like