diff options
Diffstat (limited to 'js/MatrixOp/MATPINV.js')
-rw-r--r-- | js/MatrixOp/MATPINV.js | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/js/MatrixOp/MATPINV.js b/js/MatrixOp/MATPINV.js index b95fca94..2107fcba 100644 --- a/js/MatrixOp/MATPINV.js +++ b/js/MatrixOp/MATPINV.js @@ -29,6 +29,11 @@ function MATPINV() { return this.x; } MATPINV.prototype.get = function MATPINV() { + var label = this.graphics.exprs; + if (size(label,"*")==14) { + label[9-1] = []; + } + this.set_param_popup_title = "Set MATPINV Block"; var options = { typ:["Datatype(1=real double 2=Complex)",this.typ], } @@ -76,7 +81,6 @@ function MATPINV() { return new BasicBlock(this.x); } MATPINV.prototype.get_popup_title = function MATPINV() { - var set_param_popup_title = "Set MATPINV Block"; - return set_param_popup_title; + return this.set_param_popup_title; } } |