blob: 0ff5845319a74d32805a91f27a67f88b026ca18f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//control systems by Nagoor Kani A
//Edition 3
//Year of publication 2015
//Scilab version 6.0.0
//operating systems windows 10
// Example 7.11
clc;
clear;
s=%s
p=poly([40 10],'s','coeff')
q=poly([0 3 4 1],'s','coeff')
sm=cont_frm(p,q)
disp(sm,'the state model in matrix form is')
|