diff options
Diffstat (limited to 'data_structures/MATCATV.js')
-rw-r--r-- | data_structures/MATCATV.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/data_structures/MATCATV.js b/data_structures/MATCATV.js index f8f1bf8..4fd6959 100644 --- a/data_structures/MATCATV.js +++ b/data_structures/MATCATV.js @@ -10,7 +10,7 @@ function MATCATV () { var funtyp = 4; model.sim=list(function_name,funtyp); model.in2 = new ScilabDouble([-1],[-1]); - model.in = new ScilabDouble([-2],[-3]); + model.in1 = new ScilabDouble([-2],[-3]); model.intyp = new ScilabDouble([-1,-1]); model.out = new ScilabDouble([0]); model.out2 = new ScilabDouble([-1]); @@ -29,4 +29,5 @@ function MATCATV () { var gr_i = []; this.x=new standard_define(new ScilabDouble([2,3]),model,label,gr_i); + return new BasicBlock(this.x) } |