diff options
Diffstat (limited to 'data_structures/INTRPLBLK_f.js')
-rw-r--r-- | data_structures/INTRPLBLK_f.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/data_structures/INTRPLBLK_f.js b/data_structures/INTRPLBLK_f.js index 5fc6776..4cfc3f4 100644 --- a/data_structures/INTRPLBLK_f.js +++ b/data_structures/INTRPLBLK_f.js @@ -7,7 +7,7 @@ function INTRPLBLK_f () { var model = scicos_model(); model.sim = new ScilabString(["intrpl"]); - model.in = new ScilabDouble([1]); + model.in1 = new ScilabDouble([1]); model.out = new ScilabDouble([1]); model.rpar = new ScilabDouble([a],[b]); model.blocktype = new ScilabString(["c"]); @@ -17,4 +17,5 @@ function INTRPLBLK_f () { var gr_i = []; this.x=new standard_define(new ScilabDouble([2,2]),model,exprs,gr_i); + return new BasicBlock(this.x) } |