0% found this document useful (0 votes)
31 views1 page

Final 2

This document contains MATLAB code that defines a transfer function x in terms of the z-transform variable z, transforms it into an equivalent transfer function in terms of the k-transform variable k using iztrans, and then simplifies and displays the resulting transfer function.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
31 views1 page

Final 2

This document contains MATLAB code that defines a transfer function x in terms of the z-transform variable z, transforms it into an equivalent transfer function in terms of the k-transform variable k using iztrans, and then simplifies and displays the resulting transfer function.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

syms k z;

x = ( ( (0.7*z^(-1))/((1-0.7*z^(-1))^(2)) )+2.96 ) / ( 1-1.2*z^(-1)+0.32*z^(-2) );


pretty(x);
x = iztrans(x, k);
x = simplify(x);
pretty(x);

You might also like