diff options
Diffstat (limited to 'js/MatrixOp/MATDIV.js')
-rw-r--r-- | js/MatrixOp/MATDIV.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/MatrixOp/MATDIV.js b/js/MatrixOp/MATDIV.js index 7293521e..dbe451df 100644 --- a/js/MatrixOp/MATDIV.js +++ b/js/MatrixOp/MATDIV.js @@ -5,7 +5,7 @@ function MATDIV() { function_name = "mat_div"; funtyp = 4; this.model.sim = list(new ScilabString([function_name]), new ScilabDouble([funtyp])); - this.model.in1 = [[-1],[-2]]; + this.model.in1 = new ScilabDouble([-1],[-2]); this.model.in2 = new ScilabDouble([-3],[-3]); this.model.intyp = [1,1]; this.model.out = new ScilabDouble([-1]); |