
Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
MATLAB Simulations for transfer functions
Typology: Lab Reports
1 / 1
This page cannot be seen from the preview
Don't miss anything!

t = [0:0.1:15]; G_num = [2 5 1]; G_dem = [1 2 3]; G = tf(G_num,G_dem); H = zpk([-2],[-10,-5],[5]); sys_resp = feedback(G,H,-1); step(sys_resp,t);