From aabd535925f24c6203eb1a0dcc5b28d9670133de Mon Sep 17 00:00:00 2001 From: Sunil Shetye Date: Wed, 11 Jul 2018 10:44:34 +0530 Subject: show type for matrix also --- js/IntegerOp/INTMUL.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'js/IntegerOp/INTMUL.js') diff --git a/js/IntegerOp/INTMUL.js b/js/IntegerOp/INTMUL.js index 1c55465e..ac189f0f 100644 --- a/js/IntegerOp/INTMUL.js +++ b/js/IntegerOp/INTMUL.js @@ -6,7 +6,7 @@ function INTMUL() { this.model.sim = list(new ScilabString(["matmul_i32"]), new ScilabDouble([4])); this.model.in1 = [[-1],[-2]]; this.model.out = new ScilabDouble([-1]); - this.model.in2 = [[-2],[-3]]; + this.model.in2 = new ScilabDouble([-2],[-3]); this.model.out2 = new ScilabDouble([-3]); this.model.intyp = [3,3]; this.model.outtyp = new ScilabDouble([3]); -- cgit