blob: 77e8f89cb2d4d6af2a95db3e709204360e3b32e8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
function OUT_f () {
var n = -1;
var prt = 1;
var model = scicos_model();
model.sim = new ScilabString(["output"]);
model.in = new ScilabDouble([-1]);
model.in2 = new ScilabDouble([-2]);
model.intyp = new ScilabDouble([-1]);
model.ipar=new ScilabDouble([prt]);
model.blocktype = new ScilabString(["c"]);
model.dep_ut = new ScilabBoolean([false,false]);
var exprs = prt.toString();
var gr_i = [];
this.x=new standard_define(new ScilabDouble([1,1]),model,exprs,gr_i);
}
|