You are on page 1of 2

% HW4 EXERCISE 4

% OP AMPS

r2c = 1;
T = 0.01;
k = 1000000;
quotr2r1 = 100;
r1c = r2c/quotr2r1;

s = tf('s');

sys = (k*(r2c*s+1))/((r1c*T+r2c*T)*s^2 + (r2c+(k+1)*r1c+T)*s + 1);


bode(sys)

Published with MATLAB R2016b

You might also like