blob: 9eb473784a979adebee579af3328369f4ccec2b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
//
// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
// Copyright (C) ????-2008 - INRIA
//
// This file is distributed under the same license as the Scilab package.
//
function demo_cont()
deff('[]=demoexc(fil)','exec(''SCI/modules/cacsd/demos/''+fil)')
while %t do
n=x_choose(['LQG','Mixed-sensitivity','PID'],'Select a demo');
select n
case 0
break
case 1
demoexc('lqg/lqg.dem')
case 2
demoexc('mixed.dem')
case 3
demoexc('pid.dem')
end
end
endfunction
demo_cont();
clear demo_cont;
|