summaryrefslogtreecommitdiff
path: root/js/MatrixOp/MATLU.js
diff options
context:
space:
mode:
authorSunil Shetye2018-08-27 14:38:26 +0530
committerSunil Shetye2018-08-27 16:43:40 +0530
commit8e6c876e5582928ab6909cf0f3529a97f622520d (patch)
tree3ce13a7e3552486771d147aec6973ff45a6024a5 /js/MatrixOp/MATLU.js
parent5cffbe3aa309e242255b96fe954688c6f1380811 (diff)
downloadsci2js-8e6c876e5582928ab6909cf0f3529a97f622520d.tar.gz
sci2js-8e6c876e5582928ab6909cf0f3529a97f622520d.tar.bz2
sci2js-8e6c876e5582928ab6909cf0f3529a97f622520d.zip
ignore first and last variable by index, not value
Diffstat (limited to 'js/MatrixOp/MATLU.js')
-rw-r--r--js/MatrixOp/MATLU.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/js/MatrixOp/MATLU.js b/js/MatrixOp/MATLU.js
index 8088fb82..95f1fde6 100644
--- a/js/MatrixOp/MATLU.js
+++ b/js/MatrixOp/MATLU.js
@@ -42,7 +42,6 @@ function MATLU() {
while (true) {
var ok = true;
this.typ = inverse(arguments[0]["typ"]);
- this.lab = arguments[0]["lab"];
if (!ok) {
break;
}
@@ -68,7 +67,7 @@ function MATLU() {
if (ok) {
var funtyp = 4;
this.model.sim = list(new ScilabString([function_name]), new ScilabDouble([funtyp]));
- this.graphics.exprs = new ScilabDouble([this.lab]);
+ this.graphics.exprs = new ScilabDouble([lab]);
this.x.graphics = this.graphics;
this.x.model = this.model;
break;