MATLAB: How to define transfer function into the tf or ss format

Control System Toolboxsimulink

If a transfer function is given like Lt(s) = F*(s*I-A)^(-1)*B, how to get its relative tf() or ss() format so that bodeplot or nyquist can be used? Thx.

Best Answer

sys=ss(A,B,C,0);
bode(sys);
nyquist(sys);
HTH. Arkadiy