blob: 6a3cb04e2c40788b533d23c868352e2ed31bade7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
function GENSIN_f () {
var rpar = [[1],[1],[0]];
var model = scicos_model();
model.sim = new ScilabString(["gensin"]);
model.in = new ScilabDouble();
model.out = new ScilabDouble([1]);
model.out2 = new ScilabDouble([1]);
model.outtyp = new ScilabDouble([1]);
model.rpar = new ScilabDouble([1],[1],[0]);
model.blocktype = new ScilabString(["c"]);
model.dep_ut = new ScilabBoolean([false,true]);
var exprs = [[rpar(1.toString())],[rpar(2.toString())],[rpar(3.toString())]];
var gr_i = [];
this.x=new standard_define(new ScilabDouble([3,2]),model,exprs,gr_i);
}
|