blob: 4ee32df4e556a338671bd55fa762b8dbd05a4871 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
function SUM_f () {
var model = scicos_model();
model.sim=list("plusblk",2);
model.in = new ScilabDouble([-1],[-1],[-1]);
model.out = new ScilabDouble([-1]);
model.blocktype = new ScilabString(["c"]);
model.dep_ut = new ScilabBoolean([true,false]);
var gr_i = [];
var exprs = [];
this.x=new standard_define(new ScilabDouble([1,1]),model,exprs,gr_i);
}
|