diff options
Diffstat (limited to 'js/MatrixOp/MATMUL.js')
-rw-r--r-- | js/MatrixOp/MATMUL.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/js/MatrixOp/MATMUL.js b/js/MatrixOp/MATMUL.js index 00e69390..2c2cc096 100644 --- a/js/MatrixOp/MATMUL.js +++ b/js/MatrixOp/MATMUL.js @@ -26,9 +26,9 @@ function MATMUL() { return options; } MATMUL.prototype.set = function MATMUL() { - this.dtype = parseFloat((arguments[0]["dtype"])) - this.rule = parseFloat((arguments[0]["rule"])) - this.np = parseFloat((arguments[0]["np"])) + this.dtype = arguments[0]["dtype"] + this.rule = parseFloat(arguments[0]["rule"]) + this.np = parseFloat(arguments[0]["np"]) this.x = arg1; graphics = this.x.graphics; label = graphics.exprs; |