(Solved): Plz solve it both using MATLAB
Use the MATALB to find the state equations and output equation for t ...
Plz solve it both using MATLAB
Use the MATALB to find the state equations and output equation for the diagonal canonical representation of the transfer function: \[ T(s)=\frac{3 s+1}{s^{3}+6 s^{2}+11 s+6} \] QUESTION (5) (5 POINTS) Use the MATALB to find the state equations and output equation for the Jordan canonical representation of the transfer function: \[ Y(s)=\frac{4 s+2}{s^{3}+4 s^{2}+5 s+2} U(s) \]
The given problem is solved below: PART-1: QUESTION 4 MATLAB CODE: clc; syms X1 X2 X3 Y u Num = [3 1]; %%%% Numerator coefficients of transfer function Den = [1 6 11 6]; %%%% Denomenator coefficients of transfer function [A,B,C,D] = tf2ss(Num,Den)