MATLAB: How to write the expression in matlab

control

How to write the expression : (2-s^500-3s^700)/(1-11s^400-20s^700)

Best Answer

First, add the required multiplicaiton operators, then:
s = tf('s');
H = (2-s^500-3*s^700)/(1-11*s^400-20*s^700)
H =
3 s^700 + s^500 - 2
-----------------------
20 s^700 + 11 s^400 - 1
Continuous-time transfer function.
This requires the Control System Toolbox, or a related Toolbox.
Related Question