diff options
Diffstat (limited to 'js/MatrixOp/MATINV.js')
-rw-r--r-- | js/MatrixOp/MATINV.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/js/MatrixOp/MATINV.js b/js/MatrixOp/MATINV.js index f260f75b..b495de7d 100644 --- a/js/MatrixOp/MATINV.js +++ b/js/MatrixOp/MATINV.js @@ -23,6 +23,7 @@ function MATINV() { label = [sci2exp(1)]; gr_i = []; this.x = standard_define([2,2],model,label,gr_i); + return new BasicBlock(this.x); } MATINV.prototype.details = function MATINV() { return this.x; @@ -68,5 +69,6 @@ function MATINV() { break; } } + return new BasicBlock(this.x); } } |