From 8e6c876e5582928ab6909cf0f3529a97f622520d Mon Sep 17 00:00:00 2001 From: Sunil Shetye Date: Mon, 27 Aug 2018 14:38:26 +0530 Subject: ignore first and last variable by index, not value --- js/MatrixOp/MATLU.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'js/MatrixOp/MATLU.js') 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; -- cgit