blob: a169dc1bf698d29811dc9b6f6c4b3487890e811a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
function PROD_f () {
var model = scicos_model();
model.sim=list("prod",2);
model.in = new ScilabDouble([-1],[-1]);
model.out = new ScilabDouble([-1]);
model.blocktype = new ScilabString(["c"]);
model.dep_ut = new ScilabBoolean([true,false]);
this.x=new standard_define(new ScilabDouble([1,1]),model,[],[]);
}
|