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 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201
|
function [ok,%1,%2,%3,%4,%5,%6,%7,%8,%9,%10,%11,%12,%13,%14,%15,%16,%17,%18]=getvalue(%desc,%labels,%typ,%ini)
// getvalues - %window dialog for data acquisition
//%Synta%
// [ok,%1,..,%11]=getvalue(desc,labels,typ,ini)
//%Parameters
// desc : column vector of strings, dialog general comment
// labels : n column vector of strings, labels(i) is the label of
// the ith required value
// typ : list(typ1,dim1,..,typn,dimn)
// typi : defines the type of the ith required value
// if may have the following values:
// 'mat' : stands for matrix of scalars
// 'col' : stands for column vector of scalars
// 'row' : stands for row vector of scalars
// 'vec' : stands for vector of scalars
// 'str' : stands for vector of strings
// 'lis' : stands for list
// 'pol' : stands for polynomials
// 'r' : stands for rational
// dimi : defines the size of the ith required value
// it must be
// - an integer or a 2-vector of integers (-1 stands for
// arbitrary dimension)
// - an evaluatable character string
// ini : n column vector of strings, ini(i) gives the suggested
// response for the ith required value
// ok : boolean ,%t if ok button pressed, %f if cancel button pressed
// xi : contains the ith required value if ok==%t
//%Description
// getvalues macro encapsulate x_mdialog function with error checking,
// evaluation of numerical response, ...
//%Remarks
// All correct scilab syntax may be used as responses, for matrices
// and vectors getvalues automatically adds [ ] around the given response
// before numerical evaluation
//%Example
// labels=['magnitude';'frequency';'phase '];
// [ampl,freq,ph]=getvalue('define sine signal',labels,..
// list('vec',1,'vec',1,'vec',1),['0.85';'10^2';'%pi/3'])
//
//%See also
// x_mdialog, x_dialog
//!
// Copyright INRIA
[%lhs,%rhs]=argn(0)
%nn=prod(size(%labels))
if %lhs<>%nn+2&%lhs<>%nn+1 then error(41),end
if size(%typ)<>2*%nn then
error('%typ : list(''type'',[sizes],...)')
end
%1=[];%2=[];%3=[];%4=[];%5=[];%6=[];%7=[];%8=[];%9=[];%10=[];%11=[];
%12=[];%13=[];%14=[];
%15=[];%16=[];%17=[];%18=[];
if exists('%scicos_context') then
%mm=getfield(1,%scicos_context)
for %mi=%mm(3:$)
if execstr(%mi+'=%scicos_context(%mi)','errcatch')<>0 then
disp(lasterror())
ok=%f
return
end
end
end
if %rhs==3 then %ini=emptystr(%nn,1),end
ok=%t
while %t do
%str1=x_mdialog(%desc,%labels,%ini)
if %str1==[] then ok=%f,%str=[];break,end
%str=%str1;
for %kk=1:%nn
%cod=ascii(%str(%kk))
%spe=find(%cod==10)
if %spe<>[] then
%semi=ascii(';')
%cod(%spe)=%semi*ones(%spe')
%str(%kk)=ascii(%cod)
end
end
%nok=0
for %kk=1:%nn
select part(%typ(2*%kk-1),1:3)
case 'mat'
%ierr=execstr('%vv=['+%str(%kk)+']','errcatch');
if %ierr<>0 then %nok=-%kk;break,end
if type(%vv)<>1 then %nok=-%kk,break,end
%sz=%typ(2*%kk);if type(%sz)==10 then %sz=evstr(%sz),end
[%mv,%nv]=size(%vv)
%ssz=string(%sz(1))+' x '+string(%sz(2))
if %mv*%nv==0 then
if %sz(1)>=0&%sz(2)>=0&%sz(1)*%sz(2)<>0 then %nok=%kk,break,end
else
if %sz(1)>=0 then if %mv<>%sz(1) then %nok=%kk,break,end,end
if %sz(2)>=0 then if %nv<>%sz(2) then %nok=%kk,break,end,end
end
case 'vec'
%ierr=execstr('%vv=['+%str(%kk)+']','errcatch')
if %ierr<>0 then %nok=-%kk;break,end
if type(%vv)<>1 then %nok=-%kk,break,end
%sz=%typ(2*%kk);if type(%sz)==10 then %sz=evstr(%sz),end
%ssz=string(%sz(1))
%nv=prod(size(%vv))
if %sz(1)>=0 then if %nv<>%sz(1) then %nok=%kk,break,end,end
case 'pol'
%ierr=execstr('%vv=['+%str(%kk)+']','errcatch');
if %ierr<>0 then %nok=-%kk;break,end
if type(%vv)>2 then %nok=-%kk,break,end
%sz=%typ(2*%kk);if type(%sz)==10 then %sz=evstr(%sz),end
%ssz=string(%sz(1))
%nv=prod(size(%vv))
if %sz(1)>=0 then if %nv<>%sz(1) then %nok=%kk,break,end,end
case 'row'
%ierr=execstr('%vv=['+%str(%kk)+']','errcatch');
if %ierr<>0 then %nok=-%kk;break,end
if type(%vv)<>1 then %nok=-%kk,break,end
%sz=%typ(2*%kk);if type(%sz)==10 then %sz=evstr(%sz),end
if %sz(1)<0 then
%ssz='1 x *'
else
%ssz='1 x '+string(%sz(1))
end
[%mv,%nv]=size(%vv)
if %mv<>1 then %nok=%kk,break,end,
if %sz(1)>=0 then if %nv<>%sz(1) then %nok=%kk,break,end,end
case 'col'
%ierr=execstr('%vv=['+%str(%kk)+']','errcatch');
if %ierr<>0 then %nok=-%kk;break,end
if type(%vv)<>1 then %nok=-%kk,break,end
%sz=%typ(2*%kk);if type(%sz)==10 then %sz=evstr(%sz),end
if %sz(1)<0 then
%ssz='* x 1'
else
%ssz=string(%sz(1))+' x 1'
end
[%mv,%nv]=size(%vv)
if %nv<>1 then %nok=%kk,break,end,
if %sz(1)>=0 then if %mv<>%sz(1) then %nok=%kk,break,end,end
case 'str'
%sde=%str1(%kk)
%spe=find(ascii(%str1(%kk))==10)
%spe($+1)=length(%sde)+1
%vv=[];%kk1=1
for %kkk=1:size(%spe,'*')
%vv(%kkk,1)=part(%sde,%kk1:%spe(%kkk)-1)
%kk1=%spe(%kkk)+1
end
%sz=%typ(2*%kk);if type(%sz)==10 then %sz=evstr(%sz),end
%ssz=string(%sz(1))
%nv=prod(size(%vv))
if %sz(1)>=0 then if %nv<>%sz(1) then %nok=%kk,break,end,end
case 'lis'
%ierr=execstr('%vv='+%str(%kk),'errcatch');
if %ierr<>0 then %nok=-%kk;break,end
if type(%vv)<>15& type(%vv)<>16 then %nok=-%kk,break,end
%sz=%typ(2*%kk);if type(%sz)==10 then %sz=evstr(%sz),end
%ssz=string(%sz(1))
%nv=size(%vv)
if %sz(1)>=0 then if %nv<>%sz(1) then %nok=%kk,break,end,end
case 'r '
%ierr=execstr('%vv=['+%str(%kk)+']','errcatch');
if %ierr<>0 then %nok=-%kk;break,end
if type(%vv)<>16 then %nok=-%kk,break,end
if typeof(%vv)<>'rational' then %nok=-%kk,break,end
%sz=%typ(2*%kk);if type(%sz)==10 then %sz=evstr(%sz),end
[%mv,%nv]=size(%vv(2))
%ssz=string(%sz(1))+' x '+string(%sz(2))
if %mv*%nv==0 then
if %sz(1)>=0&%sz(2)>=0&%sz(1)*%sz(2)<>0 then %nok=%kk,break,end
else
if %sz(1)>=0 then if %mv<>%sz(1) then %nok=%kk,break,end,end
if %sz(2)>=0 then if %nv<>%sz(2) then %nok=%kk,break,end,end
end
else
error('type non gere :'+%typ(2*%kk-1))
end
execstr('%'+string(%kk)+'=%vv')
end
if %nok>0 then
x_message(['answer given for '+%labels(%nok);
'has invalid dimension: ';
'waiting for dimension '+%ssz])
%ini=%str
elseif %nok<0 then
if %ierr==0 then
x_message(['answer given for '+%labels(-%nok);
'has incorrect type :'+ %typ(-2*%nok-1)])
else
x_message(['answer given for '+%labels(-%nok);
'is incorrect see error message in scilab window'])
end
%ini=%str
else
break
end
end
if %lhs==%nn+2 then
execstr('%'+string(%lhs-1)+'=%str')
end
endfunction
|