diff options
Diffstat (limited to 'js/MatrixOp/EXTTRI.js')
-rw-r--r-- | js/MatrixOp/EXTTRI.js | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/js/MatrixOp/EXTTRI.js b/js/MatrixOp/EXTTRI.js index d874fbff..726daa2c 100644 --- a/js/MatrixOp/EXTTRI.js +++ b/js/MatrixOp/EXTTRI.js @@ -29,6 +29,11 @@ function EXTTRI() { return this.x; } EXTTRI.prototype.get = function EXTTRI() { + var label = this.graphics.exprs; + if (size(label,"*")==14) { + label[9-1] = []; + } + this.set_param_popup_title = "Set EXTTRI block parameters"; var options = { typ:["Datatype(1=real double 2=Complex)",this.typ], decomptyp:["extraction type (1=lower 2=upper 3=diagonal)",this.decomptyp], @@ -100,7 +105,6 @@ function EXTTRI() { return new BasicBlock(this.x); } EXTTRI.prototype.get_popup_title = function EXTTRI() { - var set_param_popup_title = "Set EXTTRI block parameters"; - return set_param_popup_title; + return this.set_param_popup_title; } } |