summaryrefslogtreecommitdiff
path: root/js/MatrixOp
diff options
context:
space:
mode:
Diffstat (limited to 'js/MatrixOp')
-rw-r--r--js/MatrixOp/CUMSUM.js6
-rw-r--r--js/MatrixOp/EXTRACT.js6
-rw-r--r--js/MatrixOp/EXTTRI.js6
-rw-r--r--js/MatrixOp/MATBKSL.js2
-rw-r--r--js/MatrixOp/MATCATH.js4
-rw-r--r--js/MatrixOp/MATCATV.js4
-rw-r--r--js/MatrixOp/MATDET.js2
-rw-r--r--js/MatrixOp/MATDIAG.js2
-rw-r--r--js/MatrixOp/MATDIV.js2
-rw-r--r--js/MatrixOp/MATEIG.js6
-rw-r--r--js/MatrixOp/MATEXPM.js2
-rw-r--r--js/MatrixOp/MATINV.js2
-rw-r--r--js/MatrixOp/MATLU.js4
-rw-r--r--js/MatrixOp/MATMAGPHI.js4
-rw-r--r--js/MatrixOp/MATMUL.js6
-rw-r--r--js/MatrixOp/MATPINV.js2
-rw-r--r--js/MatrixOp/MATRESH.js8
-rw-r--r--js/MatrixOp/MATSING.js6
-rw-r--r--js/MatrixOp/MATSUM.js6
-rw-r--r--js/MatrixOp/MATTRAN.js4
-rw-r--r--js/MatrixOp/MATZREIM.js4
-rw-r--r--js/MatrixOp/RICC.js4
-rw-r--r--js/MatrixOp/ROOTCOEF.js4
-rw-r--r--js/MatrixOp/SQRT.js2
-rw-r--r--js/MatrixOp/SUBMAT.js12
25 files changed, 55 insertions, 55 deletions
diff --git a/js/MatrixOp/CUMSUM.js b/js/MatrixOp/CUMSUM.js
index 5d141e69..5e4fcdc4 100644
--- a/js/MatrixOp/CUMSUM.js
+++ b/js/MatrixOp/CUMSUM.js
@@ -36,9 +36,9 @@ function CUMSUM() {
return options;
}
CUMSUM.prototype.set = function CUMSUM() {
- this.typ = inverse((arguments[0]["typ"]))
- this.decomptyp = parseFloat((arguments[0]["decomptyp"]))
- this.lab = parseFloat((arguments[0]["lab"]))
+ this.typ = inverse(arguments[0]["typ"])
+ this.decomptyp = arguments[0]["decomptyp"]
+ this.lab = arguments[0]["lab"]
this.x = arg1;
model = arg1.model;
graphics = arg1.graphics;
diff --git a/js/MatrixOp/EXTRACT.js b/js/MatrixOp/EXTRACT.js
index 973e75c0..1678b4c7 100644
--- a/js/MatrixOp/EXTRACT.js
+++ b/js/MatrixOp/EXTRACT.js
@@ -37,9 +37,9 @@ function EXTRACT() {
return options;
}
EXTRACT.prototype.set = function EXTRACT() {
- this.typ = inverse((arguments[0]["typ"]))
- this.a = inverse((arguments[0]["a"]))
- this.b = inverse((arguments[0]["b"]))
+ this.typ = inverse(arguments[0]["typ"])
+ this.a = inverse(arguments[0]["a"])
+ this.b = inverse(arguments[0]["b"])
this.x = arg1;
graphics = arg1.graphics;
label = graphics.exprs;
diff --git a/js/MatrixOp/EXTTRI.js b/js/MatrixOp/EXTTRI.js
index 8252ac59..575b6398 100644
--- a/js/MatrixOp/EXTTRI.js
+++ b/js/MatrixOp/EXTTRI.js
@@ -36,9 +36,9 @@ function EXTTRI() {
return options;
}
EXTTRI.prototype.set = function EXTTRI() {
- this.typ = inverse((arguments[0]["typ"]))
- this.decomptyp = parseFloat((arguments[0]["decomptyp"]))
- this.lab = parseFloat((arguments[0]["lab"]))
+ this.typ = inverse(arguments[0]["typ"])
+ this.decomptyp = arguments[0]["decomptyp"]
+ this.lab = arguments[0]["lab"]
this.x = arg1;
model = arg1.model;
graphics = arg1.graphics;
diff --git a/js/MatrixOp/MATBKSL.js b/js/MatrixOp/MATBKSL.js
index 7df75e09..c5af6daa 100644
--- a/js/MatrixOp/MATBKSL.js
+++ b/js/MatrixOp/MATBKSL.js
@@ -35,7 +35,7 @@ function MATBKSL() {
return options;
}
MATBKSL.prototype.set = function MATBKSL() {
- this.typ = inverse((arguments[0]["typ"]))
+ this.typ = inverse(arguments[0]["typ"])
this.x = arg1;
graphics = arg1.graphics;
label = graphics.exprs;
diff --git a/js/MatrixOp/MATCATH.js b/js/MatrixOp/MATCATH.js
index 945141bf..193c14eb 100644
--- a/js/MatrixOp/MATCATH.js
+++ b/js/MatrixOp/MATCATH.js
@@ -35,8 +35,8 @@ function MATCATH() {
return options;
}
MATCATH.prototype.set = function MATCATH() {
- this.nin = parseFloat((arguments[0]["nin"]))
- this.lab = parseFloat((arguments[0]["lab"]))
+ this.nin = arguments[0]["nin"]
+ this.lab = arguments[0]["lab"]
this.x = arg1;
model = arg1.model;
graphics = arg1.graphics;
diff --git a/js/MatrixOp/MATCATV.js b/js/MatrixOp/MATCATV.js
index 5a82ef49..68f2ca62 100644
--- a/js/MatrixOp/MATCATV.js
+++ b/js/MatrixOp/MATCATV.js
@@ -36,8 +36,8 @@ function MATCATV() {
return options;
}
MATCATV.prototype.set = function MATCATV() {
- this.nin = parseFloat((arguments[0]["nin"]))
- this.lab = parseFloat((arguments[0]["lab"]))
+ this.nin = arguments[0]["nin"]
+ this.lab = arguments[0]["lab"]
this.x = arg1;
model = arg1.model;
graphics = arg1.graphics;
diff --git a/js/MatrixOp/MATDET.js b/js/MatrixOp/MATDET.js
index 34cc671f..3f9d3c79 100644
--- a/js/MatrixOp/MATDET.js
+++ b/js/MatrixOp/MATDET.js
@@ -35,7 +35,7 @@ function MATDET() {
return options;
}
MATDET.prototype.set = function MATDET() {
- this.typ = inverse((arguments[0]["typ"]))
+ this.typ = inverse(arguments[0]["typ"])
this.x = arg1;
graphics = arg1.graphics;
label = graphics.exprs;
diff --git a/js/MatrixOp/MATDIAG.js b/js/MatrixOp/MATDIAG.js
index c4287281..701c7a7c 100644
--- a/js/MatrixOp/MATDIAG.js
+++ b/js/MatrixOp/MATDIAG.js
@@ -35,7 +35,7 @@ function MATDIAG() {
return options;
}
MATDIAG.prototype.set = function MATDIAG() {
- this.typ = inverse((arguments[0]["typ"]))
+ this.typ = inverse(arguments[0]["typ"])
this.x = arg1;
graphics = arg1.graphics;
label = graphics.exprs;
diff --git a/js/MatrixOp/MATDIV.js b/js/MatrixOp/MATDIV.js
index 6bc17b58..49d03f43 100644
--- a/js/MatrixOp/MATDIV.js
+++ b/js/MatrixOp/MATDIV.js
@@ -35,7 +35,7 @@ function MATDIV() {
return options;
}
MATDIV.prototype.set = function MATDIV() {
- this.typ = inverse((arguments[0]["typ"]))
+ this.typ = inverse(arguments[0]["typ"])
this.x = arg1;
graphics = arg1.graphics;
label = graphics.exprs;
diff --git a/js/MatrixOp/MATEIG.js b/js/MatrixOp/MATEIG.js
index 64638c8c..c44828fb 100644
--- a/js/MatrixOp/MATEIG.js
+++ b/js/MatrixOp/MATEIG.js
@@ -36,9 +36,9 @@ function MATEIG() {
return options;
}
MATEIG.prototype.set = function MATEIG() {
- this.typ = inverse((arguments[0]["typ"]))
- this.decomptyp = parseFloat((arguments[0]["decomptyp"]))
- this.lab = parseFloat((arguments[0]["lab"]))
+ this.typ = inverse(arguments[0]["typ"])
+ this.decomptyp = arguments[0]["decomptyp"]
+ this.lab = arguments[0]["lab"]
this.x = arg1;
model = arg1.model;
graphics = arg1.graphics;
diff --git a/js/MatrixOp/MATEXPM.js b/js/MatrixOp/MATEXPM.js
index 231f2412..175fd28a 100644
--- a/js/MatrixOp/MATEXPM.js
+++ b/js/MatrixOp/MATEXPM.js
@@ -35,7 +35,7 @@ function MATEXPM() {
return options;
}
MATEXPM.prototype.set = function MATEXPM() {
- this.typ = inverse((arguments[0]["typ"]))
+ this.typ = inverse(arguments[0]["typ"])
this.x = arg1;
graphics = arg1.graphics;
label = graphics.exprs;
diff --git a/js/MatrixOp/MATINV.js b/js/MatrixOp/MATINV.js
index b719e76a..16316559 100644
--- a/js/MatrixOp/MATINV.js
+++ b/js/MatrixOp/MATINV.js
@@ -35,7 +35,7 @@ function MATINV() {
return options;
}
MATINV.prototype.set = function MATINV() {
- this.typ = inverse((arguments[0]["typ"]))
+ this.typ = inverse(arguments[0]["typ"])
this.x = arg1;
graphics = arg1.graphics;
label = graphics.exprs;
diff --git a/js/MatrixOp/MATLU.js b/js/MatrixOp/MATLU.js
index b7c9feef..09cce1c8 100644
--- a/js/MatrixOp/MATLU.js
+++ b/js/MatrixOp/MATLU.js
@@ -35,8 +35,8 @@ function MATLU() {
return options;
}
MATLU.prototype.set = function MATLU() {
- this.typ = inverse((arguments[0]["typ"]))
- this.lab = parseFloat((arguments[0]["lab"]))
+ this.typ = inverse(arguments[0]["typ"])
+ this.lab = arguments[0]["lab"]
this.x = arg1;
model = arg1.model;
graphics = arg1.graphics;
diff --git a/js/MatrixOp/MATMAGPHI.js b/js/MatrixOp/MATMAGPHI.js
index 5ae544ac..db99a27b 100644
--- a/js/MatrixOp/MATMAGPHI.js
+++ b/js/MatrixOp/MATMAGPHI.js
@@ -35,8 +35,8 @@ function MATMAGPHI() {
return options;
}
MATMAGPHI.prototype.set = function MATMAGPHI() {
- this.decomptyp = parseFloat((arguments[0]["decomptyp"]))
- this.lab = parseFloat((arguments[0]["lab"]))
+ this.decomptyp = arguments[0]["decomptyp"]
+ this.lab = arguments[0]["lab"]
this.x = arg1;
model = arg1.model;
graphics = arg1.graphics;
diff --git a/js/MatrixOp/MATMUL.js b/js/MatrixOp/MATMUL.js
index 00e69390..2c2cc096 100644
--- a/js/MatrixOp/MATMUL.js
+++ b/js/MatrixOp/MATMUL.js
@@ -26,9 +26,9 @@ function MATMUL() {
return options;
}
MATMUL.prototype.set = function MATMUL() {
- this.dtype = parseFloat((arguments[0]["dtype"]))
- this.rule = parseFloat((arguments[0]["rule"]))
- this.np = parseFloat((arguments[0]["np"]))
+ this.dtype = arguments[0]["dtype"]
+ this.rule = parseFloat(arguments[0]["rule"])
+ this.np = parseFloat(arguments[0]["np"])
this.x = arg1;
graphics = this.x.graphics;
label = graphics.exprs;
diff --git a/js/MatrixOp/MATPINV.js b/js/MatrixOp/MATPINV.js
index 4577cb9a..e10268f5 100644
--- a/js/MatrixOp/MATPINV.js
+++ b/js/MatrixOp/MATPINV.js
@@ -35,7 +35,7 @@ function MATPINV() {
return options;
}
MATPINV.prototype.set = function MATPINV() {
- this.typ = inverse((arguments[0]["typ"]))
+ this.typ = inverse(arguments[0]["typ"])
this.x = arg1;
graphics = arg1.graphics;
label = graphics.exprs;
diff --git a/js/MatrixOp/MATRESH.js b/js/MatrixOp/MATRESH.js
index e6919ebb..de34ba14 100644
--- a/js/MatrixOp/MATRESH.js
+++ b/js/MatrixOp/MATRESH.js
@@ -37,10 +37,10 @@ function MATRESH() {
return options;
}
MATRESH.prototype.set = function MATRESH() {
- this.typ = inverse((arguments[0]["typ"]))
- this.l1 = parseFloat((arguments[0]["l1"]))
- this.out = parseFloat((arguments[0]["out"]))
- this.lab = parseFloat((arguments[0]["lab"]))
+ this.typ = inverse(arguments[0]["typ"])
+ this.l1 = arguments[0]["l1"]
+ this.out = arguments[0]["out"]
+ this.lab = arguments[0]["lab"]
this.x = arg1;
model = arg1.model;
graphics = arg1.graphics;
diff --git a/js/MatrixOp/MATSING.js b/js/MatrixOp/MATSING.js
index 4d1a4c80..7cd36526 100644
--- a/js/MatrixOp/MATSING.js
+++ b/js/MatrixOp/MATSING.js
@@ -36,9 +36,9 @@ function MATSING() {
return options;
}
MATSING.prototype.set = function MATSING() {
- this.typ = inverse((arguments[0]["typ"]))
- this.decomptyp = parseFloat((arguments[0]["decomptyp"]))
- this.lab = parseFloat((arguments[0]["lab"]))
+ this.typ = inverse(arguments[0]["typ"])
+ this.decomptyp = arguments[0]["decomptyp"]
+ this.lab = arguments[0]["lab"]
this.x = arg1;
model = arg1.model;
graphics = arg1.graphics;
diff --git a/js/MatrixOp/MATSUM.js b/js/MatrixOp/MATSUM.js
index 4614a4ac..92d22248 100644
--- a/js/MatrixOp/MATSUM.js
+++ b/js/MatrixOp/MATSUM.js
@@ -36,9 +36,9 @@ function MATSUM() {
return options;
}
MATSUM.prototype.set = function MATSUM() {
- this.typ = inverse((arguments[0]["typ"]))
- this.decomptyp = parseFloat((arguments[0]["decomptyp"]))
- this.lab = parseFloat((arguments[0]["lab"]))
+ this.typ = inverse(arguments[0]["typ"])
+ this.decomptyp = arguments[0]["decomptyp"]
+ this.lab = arguments[0]["lab"]
this.x = arg1;
model = arg1.model;
graphics = arg1.graphics;
diff --git a/js/MatrixOp/MATTRAN.js b/js/MatrixOp/MATTRAN.js
index 22c53449..7f798932 100644
--- a/js/MatrixOp/MATTRAN.js
+++ b/js/MatrixOp/MATTRAN.js
@@ -24,8 +24,8 @@ function MATTRAN() {
return options;
}
MATTRAN.prototype.set = function MATTRAN() {
- this.typ = inverse((arguments[0]["typ"]))
- this.rule = parseFloat((arguments[0]["rule"]))
+ this.typ = inverse(arguments[0]["typ"])
+ this.rule = arguments[0]["rule"]
this.x = arg1;
graphics = arg1.graphics;
label = graphics.exprs;
diff --git a/js/MatrixOp/MATZREIM.js b/js/MatrixOp/MATZREIM.js
index 9cee64b3..5fa97e04 100644
--- a/js/MatrixOp/MATZREIM.js
+++ b/js/MatrixOp/MATZREIM.js
@@ -35,8 +35,8 @@ function MATZREIM() {
return options;
}
MATZREIM.prototype.set = function MATZREIM() {
- this.decomptyp = parseFloat((arguments[0]["decomptyp"]))
- this.lab = parseFloat((arguments[0]["lab"]))
+ this.decomptyp = arguments[0]["decomptyp"]
+ this.lab = arguments[0]["lab"]
this.x = arg1;
model = arg1.model;
graphics = arg1.graphics;
diff --git a/js/MatrixOp/RICC.js b/js/MatrixOp/RICC.js
index 7c8b496d..6f73ee6c 100644
--- a/js/MatrixOp/RICC.js
+++ b/js/MatrixOp/RICC.js
@@ -36,8 +36,8 @@ function RICC() {
return options;
}
RICC.prototype.set = function RICC() {
- this.tpe = parseFloat((arguments[0]["tpe"]))
- this.mod = parseFloat((arguments[0]["mod"]))
+ this.tpe = arguments[0]["tpe"]
+ this.mod = arguments[0]["mod"]
this.x = arg1;
graphics = arg1.graphics;
label = graphics.exprs;
diff --git a/js/MatrixOp/ROOTCOEF.js b/js/MatrixOp/ROOTCOEF.js
index ffdac1d4..08d5e3f9 100644
--- a/js/MatrixOp/ROOTCOEF.js
+++ b/js/MatrixOp/ROOTCOEF.js
@@ -36,8 +36,8 @@ function ROOTCOEF() {
return options;
}
ROOTCOEF.prototype.set = function ROOTCOEF() {
- this.typ = inverse((arguments[0]["typ"]))
- this.inp = parseFloat((arguments[0]["inp"]))
+ this.typ = inverse(arguments[0]["typ"])
+ this.inp = arguments[0]["inp"]
this.x = arg1;
graphics = arg1.graphics;
label = graphics.exprs;
diff --git a/js/MatrixOp/SQRT.js b/js/MatrixOp/SQRT.js
index 1b2e03d6..32b04337 100644
--- a/js/MatrixOp/SQRT.js
+++ b/js/MatrixOp/SQRT.js
@@ -25,7 +25,7 @@ function SQRT() {
return options;
}
SQRT.prototype.set = function SQRT() {
- this.typ = inverse((arguments[0]["typ"]))
+ this.typ = inverse(arguments[0]["typ"])
this.x = arg1;
graphics = arg1.graphics;
label = graphics.exprs;
diff --git a/js/MatrixOp/SUBMAT.js b/js/MatrixOp/SUBMAT.js
index 1f6bce0f..18382fdf 100644
--- a/js/MatrixOp/SUBMAT.js
+++ b/js/MatrixOp/SUBMAT.js
@@ -40,12 +40,12 @@ function SUBMAT() {
return options;
}
SUBMAT.prototype.set = function SUBMAT() {
- this.typ = inverse((arguments[0]["typ"]))
- this.a = parseFloat((arguments[0]["a"]))
- this.b = parseFloat((arguments[0]["b"]))
- this.c = parseFloat((arguments[0]["c"]))
- this.d = parseFloat((arguments[0]["d"]))
- this.inp = parseFloat((arguments[0]["inp"]))
+ this.typ = inverse(arguments[0]["typ"])
+ this.a = arguments[0]["a"]
+ this.b = arguments[0]["b"]
+ this.c = arguments[0]["c"]
+ this.d = arguments[0]["d"]
+ this.inp = arguments[0]["inp"]
this.x = arg1;
graphics = arg1.graphics;
label = graphics.exprs;