Why are there extra zeros in the num and den fields of my transfer function in Control System Toolbox 8.1 (R2008a) ?

1 view (last 30 days)
I created a transfer function using variable "z^-1" and multiplied it by a transfer function in "z". The resulting transfer function have extras zeros in the 'den' and 'num' vectors:
h = tf([0 1 2 3],[1 0 0 0],0.1,'variable','z^-1');
Z = tf( [ 1 0 ], [1], 0.1, 'variable', 'z' );
g=h*Z;
get(g)
num: {[1 2 3 0]}
den: {[1 0 0 0]}

Accepted Answer

MathWorks Support Team
MathWorks Support Team on 27 Jun 2009
The ability to automatically simplify rational expressions on LTI objects is not available in the Control System Toolbox 8.1 (R2008a).
To work around this issue it is possible to perform pole/zero cancellation for the system using the command MINREAL
minreal(g)

More Answers (0)

Products


Release

R2008a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!