You are on page 1of 1

Exp6:-WAP to find out the overall transfer function to cascade, parallel & feedback.

Prog: Clear all; Close all; Disp(enter the first transfer function ); N1=input(enter the coefficient for numerator); D1=input(enter the coefficient for denominator); N1=input(enter the coefficient for second numerator); D1=input(enter the coefficient for second denominator); Sys 1=if(n1,d1); Sys2=if(n2,d2); Print sys = (n1,d1,s); Print sys =(n2,d2,s); Disp(series); Sis=series(sys1,sys2); Disp(parallel); Par=parallel[sys1,sys2]; Disp=(positive feedback); Pfbk=feedback(sys1,sys2,+1); Disp=(negative feedback); Pfbk=feedback(sys1,sys2,-1);

You might also like