diff options
Diffstat (limited to 'js/MatrixOp')
-rw-r--r-- | js/MatrixOp/EXTRACT.js | 1 | ||||
-rw-r--r-- | js/MatrixOp/MATBKSL.js | 1 | ||||
-rw-r--r-- | js/MatrixOp/MATDET.js | 1 | ||||
-rw-r--r-- | js/MatrixOp/MATDIAG.js | 1 | ||||
-rw-r--r-- | js/MatrixOp/MATDIV.js | 1 | ||||
-rw-r--r-- | js/MatrixOp/MATEXPM.js | 1 | ||||
-rw-r--r-- | js/MatrixOp/MATINV.js | 1 | ||||
-rw-r--r-- | js/MatrixOp/MATMUL.js | 1 | ||||
-rw-r--r-- | js/MatrixOp/MATPINV.js | 1 | ||||
-rw-r--r-- | js/MatrixOp/MATTRAN.js | 1 | ||||
-rw-r--r-- | js/MatrixOp/RICC.js | 1 | ||||
-rw-r--r-- | js/MatrixOp/ROOTCOEF.js | 1 | ||||
-rw-r--r-- | js/MatrixOp/SQRT.js | 1 | ||||
-rw-r--r-- | js/MatrixOp/SUBMAT.js | 1 |
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; } |