diff options
Diffstat (limited to 'js/MatrixOp/MATSING.js')
-rw-r--r-- | js/MatrixOp/MATSING.js | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/js/MatrixOp/MATSING.js b/js/MatrixOp/MATSING.js index e66d59af..393c6714 100644 --- a/js/MatrixOp/MATSING.js +++ b/js/MatrixOp/MATSING.js @@ -29,6 +29,11 @@ function MATSING() { return this.x; } MATSING.prototype.get = function MATSING() { + var label = this.graphics.exprs; + if (size(label,"*")==14) { + label[9-1] = []; + } + this.set_param_popup_title = "Set MATSVD block parameters"; var options = { typ:["Datatype(1=real double 2=Complex)",this.typ], decomptyp:["decomposition type (1=singular values 2=sing values+matrix U & V)",this.decomptyp], @@ -104,7 +109,6 @@ function MATSING() { return new BasicBlock(this.x); } MATSING.prototype.get_popup_title = function MATSING() { - var set_param_popup_title = "Set MATSVD block parameters"; - return set_param_popup_title; + return this.set_param_popup_title; } } |