diff options
Diffstat (limited to 'js/MatrixOp/MATSING.js')
-rw-r--r-- | js/MatrixOp/MATSING.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/js/MatrixOp/MATSING.js b/js/MatrixOp/MATSING.js index 68f78b93..37cb4d71 100644 --- a/js/MatrixOp/MATSING.js +++ b/js/MatrixOp/MATSING.js @@ -36,15 +36,15 @@ function MATSING() { return options; } MATSING.prototype.set = function MATSING() { - this.typ = inverse(arguments[0]["typ"]) - this.decomptyp = arguments[0]["decomptyp"] - this.lab = arguments[0]["lab"] var label = this.graphics.exprs; if (size(label,"*")==14) { label[9-1] = []; } while (true) { - [ok,this.typ,this.decomptyp,this.lab] = scicos_getvalue("Set MATSVD block parameters",["Datatype(1=real double 2=Complex)","decomposition type (1=singular values 2=sing values+matrix U & V)"],list("vec",1,"vec",1),label); + var ok = true; + this.typ = inverse(arguments[0]["typ"]); + this.decomptyp = arguments[0]["decomptyp"]; + this.lab = arguments[0]["lab"]; if (!ok) { break; } |