blob: bc45e45bc8d6d108429d2f126f0d667639f9fcf0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
function DOLLAR_m () {
var z = 0;
var inh = 0;
var in = 1;
var exprs = [[z],[inh].toString()];
var model = scicos_model();
model.sim=list("dollar4",4);
model.in=new ScilabDouble([in]);
model.out=new ScilabDouble([in]);
model.evtin = new ScilabDouble([1-inh]);
model.dstate=new ScilabDouble([z]);
model.blocktype = new ScilabString(["d"]);
model.dep_ut = new ScilabBoolean([false,false]);
var gr_i = [];
this.x=new standard_define(new ScilabDouble([2,2]),model,exprs,gr_i);
}
|