summaryrefslogtreecommitdiff
path: root/js/MatrixOp/MATDIV.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/MatrixOp/MATDIV.js')
-rw-r--r--js/MatrixOp/MATDIV.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/MatrixOp/MATDIV.js b/js/MatrixOp/MATDIV.js
index 3243ef61..7293521e 100644
--- a/js/MatrixOp/MATDIV.js
+++ b/js/MatrixOp/MATDIV.js
@@ -6,7 +6,7 @@ function MATDIV() {
funtyp = 4;
this.model.sim = list(new ScilabString([function_name]), new ScilabDouble([funtyp]));
this.model.in1 = [[-1],[-2]];
- this.model.in2 = [[-3],[-3]];
+ this.model.in2 = new ScilabDouble([-3],[-3]);
this.model.intyp = [1,1];
this.model.out = new ScilabDouble([-1]);
this.model.out2 = new ScilabDouble([-2]);