blob: 5e1f69b901b317c3a2bf1e9c22f7af807f60317b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
function PROD_f () {
var model = scicos_model();
model.sim=list(new ScilabString(["prod"]),new ScilabDouble([2]));
model.in1 = 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,[],[]);
return new RoundBlock(this.x)
}
|