diff options
Diffstat (limited to 'js/MatrixOp')
-rw-r--r-- | js/MatrixOp/CUMSUM.js | 7 | ||||
-rw-r--r-- | js/MatrixOp/EXTRACT.js | 8 | ||||
-rw-r--r-- | js/MatrixOp/EXTTRI.js | 7 | ||||
-rw-r--r-- | js/MatrixOp/MATBKSL.js | 6 | ||||
-rw-r--r-- | js/MatrixOp/MATCATH.js | 6 | ||||
-rw-r--r-- | js/MatrixOp/MATCATV.js | 6 | ||||
-rw-r--r-- | js/MatrixOp/MATDET.js | 6 | ||||
-rw-r--r-- | js/MatrixOp/MATDIAG.js | 6 | ||||
-rw-r--r-- | js/MatrixOp/MATDIV.js | 6 | ||||
-rw-r--r-- | js/MatrixOp/MATEIG.js | 7 | ||||
-rw-r--r-- | js/MatrixOp/MATEXPM.js | 6 | ||||
-rw-r--r-- | js/MatrixOp/MATINV.js | 6 | ||||
-rw-r--r-- | js/MatrixOp/MATLU.js | 6 | ||||
-rw-r--r-- | js/MatrixOp/MATMAGPHI.js | 6 | ||||
-rw-r--r-- | js/MatrixOp/MATMUL.js | 8 | ||||
-rw-r--r-- | js/MatrixOp/MATPINV.js | 6 | ||||
-rw-r--r-- | js/MatrixOp/MATRESH.js | 8 | ||||
-rw-r--r-- | js/MatrixOp/MATSING.js | 7 | ||||
-rw-r--r-- | js/MatrixOp/MATSUM.js | 7 | ||||
-rw-r--r-- | js/MatrixOp/MATTRAN.js | 7 | ||||
-rw-r--r-- | js/MatrixOp/MATZCONJ.js | 1 | ||||
-rw-r--r-- | js/MatrixOp/MATZREIM.js | 6 | ||||
-rw-r--r-- | js/MatrixOp/RICC.js | 7 | ||||
-rw-r--r-- | js/MatrixOp/ROOTCOEF.js | 7 | ||||
-rw-r--r-- | js/MatrixOp/SQRT.js | 6 | ||||
-rw-r--r-- | js/MatrixOp/SUBMAT.js | 11 |
26 files changed, 170 insertions, 0 deletions
diff --git a/js/MatrixOp/CUMSUM.js b/js/MatrixOp/CUMSUM.js index e4c3f6ea..87dabf7f 100644 --- a/js/MatrixOp/CUMSUM.js +++ b/js/MatrixOp/CUMSUM.js @@ -110,4 +110,11 @@ function CUMSUM() { CUMSUM.prototype.get_popup_title = function CUMSUM() { return this.set_param_popup_title; } + CUMSUM.prototype.importset = function CUMSUM() { + var graphics = this.x.graphics; + var ary = getData(graphics.exprs); + this.typ = ary[0]; + this.decomptyp = ary[1]; + } + CUMSUM.prototype.getContainer = function CUMSUM() { return new BasicBlock(this.x); } } diff --git a/js/MatrixOp/EXTRACT.js b/js/MatrixOp/EXTRACT.js index 9af77da4..d0a886ca 100644 --- a/js/MatrixOp/EXTRACT.js +++ b/js/MatrixOp/EXTRACT.js @@ -111,4 +111,12 @@ function EXTRACT() { EXTRACT.prototype.get_popup_title = function EXTRACT() { return this.set_param_popup_title; } + EXTRACT.prototype.importset = function EXTRACT() { + var graphics = this.x.graphics; + var ary = getData(graphics.exprs); + this.typ = ary[0]; + this.a = ary[1]; + this.b = ary[2]; + } + EXTRACT.prototype.getContainer = function EXTRACT() { return new BasicBlock(this.x); } } diff --git a/js/MatrixOp/EXTTRI.js b/js/MatrixOp/EXTTRI.js index 726daa2c..2b82a4e1 100644 --- a/js/MatrixOp/EXTTRI.js +++ b/js/MatrixOp/EXTTRI.js @@ -107,4 +107,11 @@ function EXTTRI() { EXTTRI.prototype.get_popup_title = function EXTTRI() { return this.set_param_popup_title; } + EXTTRI.prototype.importset = function EXTTRI() { + var graphics = this.x.graphics; + var ary = getData(graphics.exprs); + this.typ = ary[0]; + this.decomptyp = ary[1]; + } + EXTTRI.prototype.getContainer = function EXTTRI() { return new BasicBlock(this.x); } } diff --git a/js/MatrixOp/MATBKSL.js b/js/MatrixOp/MATBKSL.js index 3f8e402b..4a798e34 100644 --- a/js/MatrixOp/MATBKSL.js +++ b/js/MatrixOp/MATBKSL.js @@ -83,4 +83,10 @@ function MATBKSL() { MATBKSL.prototype.get_popup_title = function MATBKSL() { return this.set_param_popup_title; } + MATBKSL.prototype.importset = function MATBKSL() { + var graphics = this.x.graphics; + var ary = getData(graphics.exprs); + this.typ = ary[0]; + } + MATBKSL.prototype.getContainer = function MATBKSL() { return new BasicBlock(this.x); } } diff --git a/js/MatrixOp/MATCATH.js b/js/MatrixOp/MATCATH.js index b176cd8c..6aa349dc 100644 --- a/js/MatrixOp/MATCATH.js +++ b/js/MatrixOp/MATCATH.js @@ -72,4 +72,10 @@ function MATCATH() { MATCATH.prototype.get_popup_title = function MATCATH() { return this.set_param_popup_title; } + MATCATH.prototype.importset = function MATCATH() { + var graphics = this.x.graphics; + var ary = getData(graphics.exprs); + this.nin = ary[0]; + } + MATCATH.prototype.getContainer = function MATCATH() { return new BasicBlock(this.x); } } diff --git a/js/MatrixOp/MATCATV.js b/js/MatrixOp/MATCATV.js index 80a2fee4..64efd3cd 100644 --- a/js/MatrixOp/MATCATV.js +++ b/js/MatrixOp/MATCATV.js @@ -73,4 +73,10 @@ function MATCATV() { MATCATV.prototype.get_popup_title = function MATCATV() { return this.set_param_popup_title; } + MATCATV.prototype.importset = function MATCATV() { + var graphics = this.x.graphics; + var ary = getData(graphics.exprs); + this.nin = ary[0]; + } + MATCATV.prototype.getContainer = function MATCATV() { return new BasicBlock(this.x); } } diff --git a/js/MatrixOp/MATDET.js b/js/MatrixOp/MATDET.js index b03953df..6625ebc3 100644 --- a/js/MatrixOp/MATDET.js +++ b/js/MatrixOp/MATDET.js @@ -83,4 +83,10 @@ function MATDET() { MATDET.prototype.get_popup_title = function MATDET() { return this.set_param_popup_title; } + MATDET.prototype.importset = function MATDET() { + var graphics = this.x.graphics; + var ary = getData(graphics.exprs); + this.typ = ary[0]; + } + MATDET.prototype.getContainer = function MATDET() { return new BasicBlock(this.x); } } diff --git a/js/MatrixOp/MATDIAG.js b/js/MatrixOp/MATDIAG.js index 80baf684..5d692d08 100644 --- a/js/MatrixOp/MATDIAG.js +++ b/js/MatrixOp/MATDIAG.js @@ -83,4 +83,10 @@ function MATDIAG() { MATDIAG.prototype.get_popup_title = function MATDIAG() { return this.set_param_popup_title; } + MATDIAG.prototype.importset = function MATDIAG() { + var graphics = this.x.graphics; + var ary = getData(graphics.exprs); + this.typ = ary[0]; + } + MATDIAG.prototype.getContainer = function MATDIAG() { return new BasicBlock(this.x); } } diff --git a/js/MatrixOp/MATDIV.js b/js/MatrixOp/MATDIV.js index b2fd6830..57aaf629 100644 --- a/js/MatrixOp/MATDIV.js +++ b/js/MatrixOp/MATDIV.js @@ -83,4 +83,10 @@ function MATDIV() { MATDIV.prototype.get_popup_title = function MATDIV() { return this.set_param_popup_title; } + MATDIV.prototype.importset = function MATDIV() { + var graphics = this.x.graphics; + var ary = getData(graphics.exprs); + this.typ = ary[0]; + } + MATDIV.prototype.getContainer = function MATDIV() { return new BasicBlock(this.x); } } diff --git a/js/MatrixOp/MATEIG.js b/js/MatrixOp/MATEIG.js index f7f7e4f5..d15f22e1 100644 --- a/js/MatrixOp/MATEIG.js +++ b/js/MatrixOp/MATEIG.js @@ -108,4 +108,11 @@ function MATEIG() { MATEIG.prototype.get_popup_title = function MATEIG() { return this.set_param_popup_title; } + MATEIG.prototype.importset = function MATEIG() { + var graphics = this.x.graphics; + var ary = getData(graphics.exprs); + this.typ = ary[0]; + this.decomptyp = ary[1]; + } + MATEIG.prototype.getContainer = function MATEIG() { return new BasicBlock(this.x); } } diff --git a/js/MatrixOp/MATEXPM.js b/js/MatrixOp/MATEXPM.js index f004fbfb..d2c739a8 100644 --- a/js/MatrixOp/MATEXPM.js +++ b/js/MatrixOp/MATEXPM.js @@ -83,4 +83,10 @@ function MATEXPM() { MATEXPM.prototype.get_popup_title = function MATEXPM() { return this.set_param_popup_title; } + MATEXPM.prototype.importset = function MATEXPM() { + var graphics = this.x.graphics; + var ary = getData(graphics.exprs); + this.typ = ary[0]; + } + MATEXPM.prototype.getContainer = function MATEXPM() { return new BasicBlock(this.x); } } diff --git a/js/MatrixOp/MATINV.js b/js/MatrixOp/MATINV.js index 48abfa74..e8b951f7 100644 --- a/js/MatrixOp/MATINV.js +++ b/js/MatrixOp/MATINV.js @@ -83,4 +83,10 @@ function MATINV() { MATINV.prototype.get_popup_title = function MATINV() { return this.set_param_popup_title; } + MATINV.prototype.importset = function MATINV() { + var graphics = this.x.graphics; + var ary = getData(graphics.exprs); + this.typ = ary[0]; + } + MATINV.prototype.getContainer = function MATINV() { return new BasicBlock(this.x); } } diff --git a/js/MatrixOp/MATLU.js b/js/MatrixOp/MATLU.js index 620509fb..5aaf241f 100644 --- a/js/MatrixOp/MATLU.js +++ b/js/MatrixOp/MATLU.js @@ -84,4 +84,10 @@ function MATLU() { MATLU.prototype.get_popup_title = function MATLU() { return this.set_param_popup_title; } + MATLU.prototype.importset = function MATLU() { + var graphics = this.x.graphics; + var ary = getData(graphics.exprs); + this.typ = ary[0]; + } + MATLU.prototype.getContainer = function MATLU() { return new BasicBlock(this.x); } } diff --git a/js/MatrixOp/MATMAGPHI.js b/js/MatrixOp/MATMAGPHI.js index e79cec73..400697de 100644 --- a/js/MatrixOp/MATMAGPHI.js +++ b/js/MatrixOp/MATMAGPHI.js @@ -87,4 +87,10 @@ function MATMAGPHI() { MATMAGPHI.prototype.get_popup_title = function MATMAGPHI() { return this.set_param_popup_title; } + MATMAGPHI.prototype.importset = function MATMAGPHI() { + var graphics = this.x.graphics; + var ary = getData(graphics.exprs); + this.decomptyp = ary[0]; + } + MATMAGPHI.prototype.getContainer = function MATMAGPHI() { return new BasicBlock(this.x); } } diff --git a/js/MatrixOp/MATMUL.js b/js/MatrixOp/MATMUL.js index 93bfe650..ffa485f7 100644 --- a/js/MatrixOp/MATMUL.js +++ b/js/MatrixOp/MATMUL.js @@ -180,4 +180,12 @@ function MATMUL() { MATMUL.prototype.get_popup_title = function MATMUL() { return this.set_param_popup_title; } + MATMUL.prototype.importset = function MATMUL() { + var graphics = this.x.graphics; + var ary = getData(graphics.exprs); + this.dtype = ary[0]; + this.rule = ary[1]; + this.np = ary[2]; + } + MATMUL.prototype.getContainer = function MATMUL() { return new BasicBlock(this.x); } } diff --git a/js/MatrixOp/MATPINV.js b/js/MatrixOp/MATPINV.js index 2107fcba..9093cb6f 100644 --- a/js/MatrixOp/MATPINV.js +++ b/js/MatrixOp/MATPINV.js @@ -83,4 +83,10 @@ function MATPINV() { MATPINV.prototype.get_popup_title = function MATPINV() { return this.set_param_popup_title; } + MATPINV.prototype.importset = function MATPINV() { + var graphics = this.x.graphics; + var ary = getData(graphics.exprs); + this.typ = ary[0]; + } + MATPINV.prototype.getContainer = function MATPINV() { return new BasicBlock(this.x); } } diff --git a/js/MatrixOp/MATRESH.js b/js/MatrixOp/MATRESH.js index d4ccd783..814c2197 100644 --- a/js/MatrixOp/MATRESH.js +++ b/js/MatrixOp/MATRESH.js @@ -117,4 +117,12 @@ function MATRESH() { MATRESH.prototype.get_popup_title = function MATRESH() { return this.set_param_popup_title; } + MATRESH.prototype.importset = function MATRESH() { + var graphics = this.x.graphics; + var ary = getData(graphics.exprs); + this.typ = ary[0]; + this.l1 = ary[1]; + this.out = ary[2]; + } + MATRESH.prototype.getContainer = function MATRESH() { return new BasicBlock(this.x); } } diff --git a/js/MatrixOp/MATSING.js b/js/MatrixOp/MATSING.js index 393c6714..6726938c 100644 --- a/js/MatrixOp/MATSING.js +++ b/js/MatrixOp/MATSING.js @@ -111,4 +111,11 @@ function MATSING() { MATSING.prototype.get_popup_title = function MATSING() { return this.set_param_popup_title; } + MATSING.prototype.importset = function MATSING() { + var graphics = this.x.graphics; + var ary = getData(graphics.exprs); + this.typ = ary[0]; + this.decomptyp = ary[1]; + } + MATSING.prototype.getContainer = function MATSING() { return new BasicBlock(this.x); } } diff --git a/js/MatrixOp/MATSUM.js b/js/MatrixOp/MATSUM.js index 0a86ae96..53a9b151 100644 --- a/js/MatrixOp/MATSUM.js +++ b/js/MatrixOp/MATSUM.js @@ -112,4 +112,11 @@ function MATSUM() { MATSUM.prototype.get_popup_title = function MATSUM() { return this.set_param_popup_title; } + MATSUM.prototype.importset = function MATSUM() { + var graphics = this.x.graphics; + var ary = getData(graphics.exprs); + this.typ = ary[0]; + this.decomptyp = ary[1]; + } + MATSUM.prototype.getContainer = function MATSUM() { return new BasicBlock(this.x); } } diff --git a/js/MatrixOp/MATTRAN.js b/js/MatrixOp/MATTRAN.js index c8e18256..3926e941 100644 --- a/js/MatrixOp/MATTRAN.js +++ b/js/MatrixOp/MATTRAN.js @@ -77,4 +77,11 @@ function MATTRAN() { MATTRAN.prototype.get_popup_title = function MATTRAN() { return this.set_param_popup_title; } + MATTRAN.prototype.importset = function MATTRAN() { + var graphics = this.x.graphics; + var ary = getData(graphics.exprs); + this.typ = ary[0]; + this.rule = ary[1]; + } + MATTRAN.prototype.getContainer = function MATTRAN() { return new BasicBlock(this.x); } } diff --git a/js/MatrixOp/MATZCONJ.js b/js/MatrixOp/MATZCONJ.js index a1f59161..098bf472 100644 --- a/js/MatrixOp/MATZCONJ.js +++ b/js/MatrixOp/MATZCONJ.js @@ -37,4 +37,5 @@ function MATZCONJ() { MATZCONJ.prototype.get_popup_title = function MATZCONJ() { return; } + MATZCONJ.prototype.getContainer = function MATZCONJ() { return new BasicBlock(this.x); } } diff --git a/js/MatrixOp/MATZREIM.js b/js/MatrixOp/MATZREIM.js index 68b66103..5546f860 100644 --- a/js/MatrixOp/MATZREIM.js +++ b/js/MatrixOp/MATZREIM.js @@ -87,4 +87,10 @@ function MATZREIM() { MATZREIM.prototype.get_popup_title = function MATZREIM() { return this.set_param_popup_title; } + MATZREIM.prototype.importset = function MATZREIM() { + var graphics = this.x.graphics; + var ary = getData(graphics.exprs); + this.decomptyp = ary[0]; + } + MATZREIM.prototype.getContainer = function MATZREIM() { return new BasicBlock(this.x); } } diff --git a/js/MatrixOp/RICC.js b/js/MatrixOp/RICC.js index 9684b4a5..f2cc67b2 100644 --- a/js/MatrixOp/RICC.js +++ b/js/MatrixOp/RICC.js @@ -73,4 +73,11 @@ function RICC() { RICC.prototype.get_popup_title = function RICC() { return this.set_param_popup_title; } + RICC.prototype.importset = function RICC() { + var graphics = this.x.graphics; + var ary = getData(graphics.exprs); + this.tpe = ary[0]; + this.mod = ary[1]; + } + RICC.prototype.getContainer = function RICC() { return new BasicBlock(this.x); } } diff --git a/js/MatrixOp/ROOTCOEF.js b/js/MatrixOp/ROOTCOEF.js index f72a5260..5747895d 100644 --- a/js/MatrixOp/ROOTCOEF.js +++ b/js/MatrixOp/ROOTCOEF.js @@ -85,4 +85,11 @@ function ROOTCOEF() { ROOTCOEF.prototype.get_popup_title = function ROOTCOEF() { return this.set_param_popup_title; } + ROOTCOEF.prototype.importset = function ROOTCOEF() { + var graphics = this.x.graphics; + var ary = getData(graphics.exprs); + this.typ = ary[0]; + this.inp = ary[1]; + } + ROOTCOEF.prototype.getContainer = function ROOTCOEF() { return new BasicBlock(this.x); } } diff --git a/js/MatrixOp/SQRT.js b/js/MatrixOp/SQRT.js index da74dd84..22633c30 100644 --- a/js/MatrixOp/SQRT.js +++ b/js/MatrixOp/SQRT.js @@ -65,4 +65,10 @@ function SQRT() { SQRT.prototype.get_popup_title = function SQRT() { return this.set_param_popup_title; } + SQRT.prototype.importset = function SQRT() { + var graphics = this.x.graphics; + var ary = getData(graphics.exprs); + this.typ = ary[0]; + } + SQRT.prototype.getContainer = function SQRT() { return new BasicBlock(this.x); } } diff --git a/js/MatrixOp/SUBMAT.js b/js/MatrixOp/SUBMAT.js index d3ca5591..c504c671 100644 --- a/js/MatrixOp/SUBMAT.js +++ b/js/MatrixOp/SUBMAT.js @@ -119,4 +119,15 @@ function SUBMAT() { SUBMAT.prototype.get_popup_title = function SUBMAT() { return this.set_param_popup_title; } + SUBMAT.prototype.importset = function SUBMAT() { + var graphics = this.x.graphics; + var ary = getData(graphics.exprs); + this.typ = ary[0]; + this.a = ary[1]; + this.b = ary[2]; + this.c = ary[3]; + this.d = ary[4]; + this.inp = ary[5]; + } + SUBMAT.prototype.getContainer = function SUBMAT() { return new BasicBlock(this.x); } } |