File: lmidem.sci

package info (click to toggle)
scilab 2.4-1
  • links: PTS
  • area: non-free
  • in suites: potato, slink
  • size: 55,196 kB
  • ctags: 38,019
  • sloc: ansic: 231,970; fortran: 148,976; tcl: 7,099; makefile: 4,585; sh: 2,978; csh: 154; cpp: 101; asm: 39; sed: 5
file content (173 lines) | stat: -rw-r--r-- 5,432 bytes parent folder | download | duplicates (4)
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
function [txtdo]=lmidem(PROBNAME,XNAME,DNAME) 
// Copyright INRIA
[LHS,RHS]=argn(0);
txtdo=[]

if RHS ~=3 then
  PROBNAME1='foo';
  XNAME1='X1,X2,...';
  DNAME1='D1,D2,...';

  if RHS==1 then
    tt=read(PROBNAME,-1,1,'(a)');
    tt=stripblanks(tt);
    mat=str2vec(tt);

    [q1,p1]=find(mat'=='[');
    [q2,p2]=find(mat'==']');

    XNAME1=mat(p1(1),q1(1)+1:q2(1)-1);
    XNAME1=strcat(XNAME1);
    [q1,p1]=find(mat'=='(');
    [q2,p2]=find(mat'==')');
    DNAME1=mat(p1(1),q1(1)+1:q2(1)-1);
    DNAME1=strcat(DNAME1);
    [q2,p2]=find(mat'=='=');
    PROBNAME1=mat(p2(1),q2(1)+1:q1(1)-1);
    PROBNAME1=strcat(PROBNAME1);
  end

  labels=['LMI problem name: ';'Names of unknown matrices: ';...
          'Names of data matrices: '];
//  [ok,PROBNAME,XNAME,DNAME]=getvalue(['Problem definition';
//      'LMITOOL will generate for you a skeleton of the functions needed';
//        ' (see User''s Guide for details). For that, you need to specify:';
//        '1- Name of you problem which will be given to the solver function,';
//        '2- Names of unknown matrices or list of unknown matrices,';
//        '3- Names of data matrices or list of data matrices.'],labels,...
//        list('str',1,'str',1,'str',1),...
//        [PROBNAME1+'            ',XNAME1+'           ',DNAME1+'         ']);
  ok=%t
  PROBNAME=PROBNAME1;XNAME=XNAME1;DNAME=DNAME1;
    if ok==%f then 
        txtdo='Try again';return;
      end
    end      
//    PROBNAME=stripblanks(PROBNAME);
//    XNAME=stripblanks(XNAME);
//    DNAME=stripblanks(DNAME);


      pathname=getcwd();
      fname = pathname+'/'+PROBNAME+'.sci';
 
      txt0='function ['+XNAME+']='+PROBNAME+'('+DNAME+')'
      txt0=[txt0;'/'+'/ Generated by lmitool on ';'  '];

      txt0=[txt0;
          '  Mbound = 1e3;';
          '  abstol = 1e-10;';
          '  nu = 10;';
          '  maxiters = 100;';
          '  reltol = 1e-10;';
          '  options=[Mbound,abstol,nu,maxiters,reltol];'
          '   ']

      nv=length(XNAME);
      index_commas=[];
      for k=1:nv
        if part(XNAME,k)==',' then index_commas=[index_commas,k],end
      end
      vnum = length(index_commas)+1;
      index_commas = [0 index_commas length(XNAME)+1];

      txt1=[];txt2=[];
      for i = 1:vnum,
        vname = part(XNAME,index_commas(i)+1:index_commas(i+1)-1);
        if RHS<>1 then  
          txt1 = [txt1;
              vname+'_init=...']
        end
        txt2=[txt2,vname+'_init'];
      end



      txts1=['function [LME,LMI,OBJ]='+PROBNAME+'_eval(XLIST)';
          '['+XNAME+']=XLIST(:)']
      if RHS ~= 1 then
        txts2=['LME=...';'LMI=...';'OBJ=...']
      else
        [p,q]=size(mat);
        ind=[]
        for i=1:p
          if mat(i,2:7)==['/','/','/','/','/','/']  then
            ind=[ind i];
          end
        end
        if prod(size(ind))<>4 then 
          error('File not generated by lmitool or badly modified');
        end
        txt1=[];
        for i=ind(1)+1:ind(2)-1
          txt1=[txt1;strcat(mat(i,:))];
        end
        txts2=[];
        for i=ind(4)+1:p
          txts2=[txts2;strcat(mat(i,:))];
        end
      end

      sep11=['/'+'/'+'/'+'/'+'/'+'/'+'/'+'/'+'/'+'/'...
              +'/'+'INITIAL GUESS']
      sep12=['/'+'/'+'/'+'/'+'/'+'/'+'/'+'/'+'/'+'/'...
              +'/'+' ']
      sep13=['/'+'/'+'/'+'/'+'/'+'/'+'/'+'/'+'/'+'/'+'/'+'/'+'/'+'/'+'/'+'/'...
              +'/'+'LME, LMI and OBJ']

      sep2=['/'+'/'+'/'+'/'+'/'+'/'+'/'+'/'+'/'+'/'+'/'+'/'+'/'+'/'+'/'+'/'...
              +'/'+'EVALUATION FUNCTION'+'/'+'/'+'/'+'/'+'/'+'/'+'/'+'/'+'/'+'/'+'/'+'/'+'/'+'/'+'/'+'/'+'/'+'/'+'/'+'/'+'/'+'/'+'/'+'/'+'/'+'/'+'/'+'/']

      txt2=[
          'XLIST0=list('+strcat(txt2,',')+')';
          'XLIST=lmisolver(XLIST0,'+PROBNAME+'_eval,options)';
          '['+XNAME+']=XLIST(:)'];

      txt4=[txt0;sep11;txt1;sep12;' ';txt2;' ';' ';' ';...
              sep2;' ';txts1;' ';sep13;txts2];

      if RHS==0|RHS==1 then
        select %demo_
        case 1 
          txtdem=['The problem is here:';
                  'Minimize gama  under the constraints:'
                  '    X''-X = 0';
                  '    and '
                  '[A X + X A'''+', B, X C'']';
                  '[ B'''+', -gama I, D'']';
                  '[C X, D, -gama I] < 0';
                '   '; 
                'This problem is solved by the function below (do not edit)'
                ]
          
          case 2 
            txtdem=['The problem is here:';
                  'Minimize trace(P+Q)  under the constraints:'
                  '    P''-P = 0';
                  '    Q''-Q = 0';
                  '    and '
                  '    NB'' (A Q + Q A'' + Q) NB < 0';
                  '    NC'' (A P + P A'' + P) NC < 0';
                  '    [P I; I Q] > 0'
                  ' where NB=kernel(B) and NC=kernel(C'')'
                '   '; 
                'This problem is solved by the function below (do not edit)'
                ]
          case 3
           txtdem=['The problem is here:';
               'Find X such that A*X+X*B-C (continuous time)'
               'or Find X such that A*X*B-C (discrete time)'
               ]
          end
        [txt4]=x_dialog(txtdem,[txt4]);
        end
      if txt4==[] then txtdo='Try again';return;end
        txt=[txt4];
        n=1;
function [vec]=str2vec(str)
w=length(str);
[p,q]=size(w);ma=max(w);
vec=[];
for i=1:ma
  vec=[vec part(str,i)]
end