summaryrefslogtreecommitdiff
path: root/22/CH10/EX10.4/ch10ex4.sce
blob: d429c2a273c1888c42e4e61f14dab7730d88b5d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
//signals and systems
//state space analysis
//state space description
clear;
close;
clc;
s=poly(0,'s'); 
H=[(4/3)/(1+s),-2/(3+s), (2/3)/(4+s)];
Sys=tf2ss(H)
clean(ss2tf(Sys))
disp(Sys)