diff options
Diffstat (limited to 'data_structures/FROMMO.js')
-rw-r--r-- | data_structures/FROMMO.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/data_structures/FROMMO.js b/data_structures/FROMMO.js index db224ee..e8573de 100644 --- a/data_structures/FROMMO.js +++ b/data_structures/FROMMO.js @@ -3,7 +3,7 @@ function FROMMO () { var model = scicos_model(); model.sim = new ScilabString(["frommo"]); - model.in = new ScilabDouble(); + model.in1 = new ScilabDouble(); model.in2 = new ScilabDouble(); model.intyp = new ScilabDouble([1]); model.out = new ScilabDouble([-1]); @@ -23,4 +23,5 @@ function FROMMO () { var gr_i = []; this.x=new standard_define(new ScilabDouble([2,1]),model,exprs,gr_i); this.x.graphics.out_implicit = new ScilabString(["I"]); + return new BasicBlock(this.x) } |