summaryrefslogtreecommitdiff
path: root/js/MatrixOp
diff options
context:
space:
mode:
authorSunil Shetye2018-07-18 11:59:12 +0530
committerSunil Shetye2018-07-18 17:07:40 +0530
commit0a3a3de53938dfdc83cca1b18c792ec576d3c8f4 (patch)
treeb88691fb4265fef43321b91c876cbfd8b2c6bfb8 /js/MatrixOp
parent368762c4b8ed28573bc1f6b166e12982a2fe6c1d (diff)
downloadsci2js-0a3a3de53938dfdc83cca1b18c792ec576d3c8f4.tar.gz
sci2js-0a3a3de53938dfdc83cca1b18c792ec576d3c8f4.tar.bz2
sci2js-0a3a3de53938dfdc83cca1b18c792ec576d3c8f4.zip
remove exprs from list
Diffstat (limited to 'js/MatrixOp')
-rw-r--r--js/MatrixOp/EXTRACT.js1
-rw-r--r--js/MatrixOp/MATBKSL.js1
-rw-r--r--js/MatrixOp/MATDET.js1
-rw-r--r--js/MatrixOp/MATDIAG.js1
-rw-r--r--js/MatrixOp/MATDIV.js1
-rw-r--r--js/MatrixOp/MATEXPM.js1
-rw-r--r--js/MatrixOp/MATINV.js1
-rw-r--r--js/MatrixOp/MATMUL.js1
-rw-r--r--js/MatrixOp/MATPINV.js1
-rw-r--r--js/MatrixOp/MATTRAN.js1
-rw-r--r--js/MatrixOp/RICC.js1
-rw-r--r--js/MatrixOp/ROOTCOEF.js1
-rw-r--r--js/MatrixOp/SQRT.js1
-rw-r--r--js/MatrixOp/SUBMAT.js1
14 files changed, 0 insertions, 14 deletions
diff --git a/js/MatrixOp/EXTRACT.js b/js/MatrixOp/EXTRACT.js
index 4df55b66..ba87b44f 100644
--- a/js/MatrixOp/EXTRACT.js
+++ b/js/MatrixOp/EXTRACT.js
@@ -46,7 +46,6 @@ function EXTRACT() {
this.typ = inverse(arguments[0]["typ"]);
this.a = inverse(arguments[0]["a"]);
this.b = inverse(arguments[0]["b"]);
- this.exprs = arguments[0]["exprs"];
this.a = this.a.slice();
this.b = this.b.slice();
if (!ok) {
diff --git a/js/MatrixOp/MATBKSL.js b/js/MatrixOp/MATBKSL.js
index d7302c49..b5039821 100644
--- a/js/MatrixOp/MATBKSL.js
+++ b/js/MatrixOp/MATBKSL.js
@@ -42,7 +42,6 @@ function MATBKSL() {
while (true) {
var ok = true;
this.typ = inverse(arguments[0]["typ"]);
- this.exprs = arguments[0]["exprs"];
if (!ok) {
break;
}
diff --git a/js/MatrixOp/MATDET.js b/js/MatrixOp/MATDET.js
index 1cea77be..f47804d4 100644
--- a/js/MatrixOp/MATDET.js
+++ b/js/MatrixOp/MATDET.js
@@ -42,7 +42,6 @@ function MATDET() {
while (true) {
var ok = true;
this.typ = inverse(arguments[0]["typ"]);
- this.exprs = arguments[0]["exprs"];
if (!ok) {
break;
}
diff --git a/js/MatrixOp/MATDIAG.js b/js/MatrixOp/MATDIAG.js
index 03c618e4..ad1885be 100644
--- a/js/MatrixOp/MATDIAG.js
+++ b/js/MatrixOp/MATDIAG.js
@@ -42,7 +42,6 @@ function MATDIAG() {
while (true) {
var ok = true;
this.typ = inverse(arguments[0]["typ"]);
- this.exprs = arguments[0]["exprs"];
if (!ok) {
break;
}
diff --git a/js/MatrixOp/MATDIV.js b/js/MatrixOp/MATDIV.js
index 5122e3b0..d5d8d2f7 100644
--- a/js/MatrixOp/MATDIV.js
+++ b/js/MatrixOp/MATDIV.js
@@ -42,7 +42,6 @@ function MATDIV() {
while (true) {
var ok = true;
this.typ = inverse(arguments[0]["typ"]);
- this.exprs = arguments[0]["exprs"];
if (!ok) {
break;
}
diff --git a/js/MatrixOp/MATEXPM.js b/js/MatrixOp/MATEXPM.js
index 1c074bc1..4a3523f6 100644
--- a/js/MatrixOp/MATEXPM.js
+++ b/js/MatrixOp/MATEXPM.js
@@ -42,7 +42,6 @@ function MATEXPM() {
while (true) {
var ok = true;
this.typ = inverse(arguments[0]["typ"]);
- this.exprs = arguments[0]["exprs"];
if (!ok) {
break;
}
diff --git a/js/MatrixOp/MATINV.js b/js/MatrixOp/MATINV.js
index e8531268..1f4c3589 100644
--- a/js/MatrixOp/MATINV.js
+++ b/js/MatrixOp/MATINV.js
@@ -42,7 +42,6 @@ function MATINV() {
while (true) {
var ok = true;
this.typ = inverse(arguments[0]["typ"]);
- this.exprs = arguments[0]["exprs"];
if (!ok) {
break;
}
diff --git a/js/MatrixOp/MATMUL.js b/js/MatrixOp/MATMUL.js
index 2cdd00a2..d055e649 100644
--- a/js/MatrixOp/MATMUL.js
+++ b/js/MatrixOp/MATMUL.js
@@ -43,7 +43,6 @@ function MATMUL() {
this.dtype = arguments[0]["dtype"];
this.rule = parseFloat(arguments[0]["rule"]);
this.np = parseFloat(arguments[0]["np"]);
- this.exprs = arguments[0]["exprs"];
if (!ok) {
break;
}
diff --git a/js/MatrixOp/MATPINV.js b/js/MatrixOp/MATPINV.js
index c214b727..f4318c43 100644
--- a/js/MatrixOp/MATPINV.js
+++ b/js/MatrixOp/MATPINV.js
@@ -42,7 +42,6 @@ function MATPINV() {
while (true) {
var ok = true;
this.typ = inverse(arguments[0]["typ"]);
- this.exprs = arguments[0]["exprs"];
if (!ok) {
break;
}
diff --git a/js/MatrixOp/MATTRAN.js b/js/MatrixOp/MATTRAN.js
index c95b11f3..79d9115c 100644
--- a/js/MatrixOp/MATTRAN.js
+++ b/js/MatrixOp/MATTRAN.js
@@ -32,7 +32,6 @@ function MATTRAN() {
var ok = true;
this.typ = inverse(arguments[0]["typ"]);
this.rule = arguments[0]["rule"];
- this.exprs = arguments[0]["exprs"];
if (!ok) {
break;
}
diff --git a/js/MatrixOp/RICC.js b/js/MatrixOp/RICC.js
index 4573a534..45e4ddb9 100644
--- a/js/MatrixOp/RICC.js
+++ b/js/MatrixOp/RICC.js
@@ -44,7 +44,6 @@ function RICC() {
var ok = true;
this.tpe = arguments[0]["tpe"];
this.mod = arguments[0]["mod"];
- this.exprs = arguments[0]["exprs"];
if (!ok) {
break;
}
diff --git a/js/MatrixOp/ROOTCOEF.js b/js/MatrixOp/ROOTCOEF.js
index e4211b16..1e31ce71 100644
--- a/js/MatrixOp/ROOTCOEF.js
+++ b/js/MatrixOp/ROOTCOEF.js
@@ -44,7 +44,6 @@ function ROOTCOEF() {
var ok = true;
this.typ = inverse(arguments[0]["typ"]);
this.inp = arguments[0]["inp"];
- this.exprs = arguments[0]["exprs"];
if (!ok) {
break;
}
diff --git a/js/MatrixOp/SQRT.js b/js/MatrixOp/SQRT.js
index c1268dbd..bb183b78 100644
--- a/js/MatrixOp/SQRT.js
+++ b/js/MatrixOp/SQRT.js
@@ -29,7 +29,6 @@ function SQRT() {
while (true) {
var ok = true;
this.typ = inverse(arguments[0]["typ"]);
- this.exprs = arguments[0]["exprs"];
if (!ok) {
break;
}
diff --git a/js/MatrixOp/SUBMAT.js b/js/MatrixOp/SUBMAT.js
index 978c41c0..81385431 100644
--- a/js/MatrixOp/SUBMAT.js
+++ b/js/MatrixOp/SUBMAT.js
@@ -52,7 +52,6 @@ function SUBMAT() {
this.c = arguments[0]["c"];
this.d = arguments[0]["d"];
this.inp = arguments[0]["inp"];
- this.exprs = arguments[0]["exprs"];
if (!ok) {
break;
}