diff options
author | Sunil Shetye | 2018-08-24 13:19:45 +0530 |
---|---|---|
committer | Sunil Shetye | 2018-08-27 16:43:40 +0530 |
commit | 54e9da81f331216dd021dd4164db2811f28c6f33 (patch) | |
tree | 23c2ad8d666634b2e733cfcf42161f5675b73a8d /js/MatrixOp | |
parent | 6e346dc5337e4a53f8268744c372ca694a9563f0 (diff) | |
download | sci2js-54e9da81f331216dd021dd4164db2811f28c6f33.tar.gz sci2js-54e9da81f331216dd021dd4164db2811f28c6f33.tar.bz2 sci2js-54e9da81f331216dd021dd4164db2811f28c6f33.zip |
get the title from the definition
Diffstat (limited to 'js/MatrixOp')
-rw-r--r-- | js/MatrixOp/CUMSUM.js | 4 | ||||
-rw-r--r-- | js/MatrixOp/EXTRACT.js | 4 | ||||
-rw-r--r-- | js/MatrixOp/EXTTRI.js | 4 | ||||
-rw-r--r-- | js/MatrixOp/MATBKSL.js | 4 | ||||
-rw-r--r-- | js/MatrixOp/MATCATH.js | 4 | ||||
-rw-r--r-- | js/MatrixOp/MATCATV.js | 4 | ||||
-rw-r--r-- | js/MatrixOp/MATDET.js | 4 | ||||
-rw-r--r-- | js/MatrixOp/MATDIAG.js | 4 | ||||
-rw-r--r-- | js/MatrixOp/MATDIV.js | 4 | ||||
-rw-r--r-- | js/MatrixOp/MATEIG.js | 4 | ||||
-rw-r--r-- | js/MatrixOp/MATEXPM.js | 4 | ||||
-rw-r--r-- | js/MatrixOp/MATINV.js | 4 | ||||
-rw-r--r-- | js/MatrixOp/MATLU.js | 4 | ||||
-rw-r--r-- | js/MatrixOp/MATMAGPHI.js | 4 | ||||
-rw-r--r-- | js/MatrixOp/MATMUL.js | 4 | ||||
-rw-r--r-- | js/MatrixOp/MATPINV.js | 4 | ||||
-rw-r--r-- | js/MatrixOp/MATRESH.js | 4 | ||||
-rw-r--r-- | js/MatrixOp/MATSING.js | 4 | ||||
-rw-r--r-- | js/MatrixOp/MATSUM.js | 4 | ||||
-rw-r--r-- | js/MatrixOp/MATTRAN.js | 4 | ||||
-rw-r--r-- | js/MatrixOp/MATZCONJ.js | 4 | ||||
-rw-r--r-- | js/MatrixOp/MATZREIM.js | 4 | ||||
-rw-r--r-- | js/MatrixOp/RICC.js | 4 | ||||
-rw-r--r-- | js/MatrixOp/ROOTCOEF.js | 4 | ||||
-rw-r--r-- | js/MatrixOp/SQRT.js | 4 | ||||
-rw-r--r-- | js/MatrixOp/SUBMAT.js | 4 |
26 files changed, 104 insertions, 0 deletions
diff --git a/js/MatrixOp/CUMSUM.js b/js/MatrixOp/CUMSUM.js index 9654da9c..03ec50e1 100644 --- a/js/MatrixOp/CUMSUM.js +++ b/js/MatrixOp/CUMSUM.js @@ -102,4 +102,8 @@ function CUMSUM() { } return new BasicBlock(this.x); } + CUMSUM.prototype.get_popup_title = function CUMSUM() { + var set_param_popup_title = "Set CUMSUM block parameters"; + return set_param_popup_title; + } } diff --git a/js/MatrixOp/EXTRACT.js b/js/MatrixOp/EXTRACT.js index c3edb683..93f519eb 100644 --- a/js/MatrixOp/EXTRACT.js +++ b/js/MatrixOp/EXTRACT.js @@ -102,4 +102,8 @@ function EXTRACT() { } return new BasicBlock(this.x); } + EXTRACT.prototype.get_popup_title = function EXTRACT() { + var set_param_popup_title = "Set EXTRACT Block"; + return set_param_popup_title; + } } diff --git a/js/MatrixOp/EXTTRI.js b/js/MatrixOp/EXTTRI.js index 5b0e3c1b..df24f063 100644 --- a/js/MatrixOp/EXTTRI.js +++ b/js/MatrixOp/EXTTRI.js @@ -99,4 +99,8 @@ function EXTTRI() { } return new BasicBlock(this.x); } + EXTTRI.prototype.get_popup_title = function EXTTRI() { + var set_param_popup_title = "Set EXTTRI block parameters"; + return set_param_popup_title; + } } diff --git a/js/MatrixOp/MATBKSL.js b/js/MatrixOp/MATBKSL.js index d89eb6d0..b67c8878 100644 --- a/js/MatrixOp/MATBKSL.js +++ b/js/MatrixOp/MATBKSL.js @@ -74,4 +74,8 @@ function MATBKSL() { } return new BasicBlock(this.x); } + MATBKSL.prototype.get_popup_title = function MATBKSL() { + var set_param_popup_title = "Set MATBKSL Block"; + return set_param_popup_title; + } } diff --git a/js/MatrixOp/MATCATH.js b/js/MatrixOp/MATCATH.js index d876e23c..55a27301 100644 --- a/js/MatrixOp/MATCATH.js +++ b/js/MatrixOp/MATCATH.js @@ -64,4 +64,8 @@ function MATCATH() { } return new BasicBlock(this.x); } + MATCATH.prototype.get_popup_title = function MATCATH() { + var set_param_popup_title = "Set MATCATH block parameters"; + return set_param_popup_title; + } } diff --git a/js/MatrixOp/MATCATV.js b/js/MatrixOp/MATCATV.js index 67909b7e..522372e5 100644 --- a/js/MatrixOp/MATCATV.js +++ b/js/MatrixOp/MATCATV.js @@ -65,4 +65,8 @@ function MATCATV() { } return new BasicBlock(this.x); } + MATCATV.prototype.get_popup_title = function MATCATV() { + var set_param_popup_title = "Set MATCATV block parameters"; + return set_param_popup_title; + } } diff --git a/js/MatrixOp/MATDET.js b/js/MatrixOp/MATDET.js index 9ecae713..4a103bf9 100644 --- a/js/MatrixOp/MATDET.js +++ b/js/MatrixOp/MATDET.js @@ -74,4 +74,8 @@ function MATDET() { } return new BasicBlock(this.x); } + MATDET.prototype.get_popup_title = function MATDET() { + var set_param_popup_title = "Set MATDET Block"; + return set_param_popup_title; + } } diff --git a/js/MatrixOp/MATDIAG.js b/js/MatrixOp/MATDIAG.js index 08d84275..11faaed6 100644 --- a/js/MatrixOp/MATDIAG.js +++ b/js/MatrixOp/MATDIAG.js @@ -74,4 +74,8 @@ function MATDIAG() { } return new BasicBlock(this.x); } + MATDIAG.prototype.get_popup_title = function MATDIAG() { + var set_param_popup_title = "Set MATDIAG Block"; + return set_param_popup_title; + } } diff --git a/js/MatrixOp/MATDIV.js b/js/MatrixOp/MATDIV.js index 3bb45159..1efd13c6 100644 --- a/js/MatrixOp/MATDIV.js +++ b/js/MatrixOp/MATDIV.js @@ -74,4 +74,8 @@ function MATDIV() { } return new BasicBlock(this.x); } + MATDIV.prototype.get_popup_title = function MATDIV() { + var set_param_popup_title = "Set MATDIV Block"; + return set_param_popup_title; + } } diff --git a/js/MatrixOp/MATEIG.js b/js/MatrixOp/MATEIG.js index 466ef853..7c6d68d7 100644 --- a/js/MatrixOp/MATEIG.js +++ b/js/MatrixOp/MATEIG.js @@ -100,4 +100,8 @@ function MATEIG() { } return new BasicBlock(this.x); } + MATEIG.prototype.get_popup_title = function MATEIG() { + var set_param_popup_title = "Set MATEIG block parameters"; + return set_param_popup_title; + } } diff --git a/js/MatrixOp/MATEXPM.js b/js/MatrixOp/MATEXPM.js index 017796e2..b2f382f8 100644 --- a/js/MatrixOp/MATEXPM.js +++ b/js/MatrixOp/MATEXPM.js @@ -74,4 +74,8 @@ function MATEXPM() { } return new BasicBlock(this.x); } + MATEXPM.prototype.get_popup_title = function MATEXPM() { + var set_param_popup_title = "Set EXPM Block"; + return set_param_popup_title; + } } diff --git a/js/MatrixOp/MATINV.js b/js/MatrixOp/MATINV.js index 254adea9..4ae1f33d 100644 --- a/js/MatrixOp/MATINV.js +++ b/js/MatrixOp/MATINV.js @@ -74,4 +74,8 @@ function MATINV() { } return new BasicBlock(this.x); } + MATINV.prototype.get_popup_title = function MATINV() { + var set_param_popup_title = "Set MATINV Block"; + return set_param_popup_title; + } } diff --git a/js/MatrixOp/MATLU.js b/js/MatrixOp/MATLU.js index 060423da..8088fb82 100644 --- a/js/MatrixOp/MATLU.js +++ b/js/MatrixOp/MATLU.js @@ -76,4 +76,8 @@ function MATLU() { } return new BasicBlock(this.x); } + MATLU.prototype.get_popup_title = function MATLU() { + var set_param_popup_title = "Set MATLU block parameters"; + return set_param_popup_title; + } } diff --git a/js/MatrixOp/MATMAGPHI.js b/js/MatrixOp/MATMAGPHI.js index 6f0affc5..a854f312 100644 --- a/js/MatrixOp/MATMAGPHI.js +++ b/js/MatrixOp/MATMAGPHI.js @@ -79,4 +79,8 @@ function MATMAGPHI() { } return new BasicBlock(this.x); } + MATMAGPHI.prototype.get_popup_title = function MATMAGPHI() { + var set_param_popup_title = "Set MATMAGPHI block parameters"; + return set_param_popup_title; + } } diff --git a/js/MatrixOp/MATMUL.js b/js/MatrixOp/MATMUL.js index 6546d7a0..7da3392c 100644 --- a/js/MatrixOp/MATMUL.js +++ b/js/MatrixOp/MATMUL.js @@ -163,4 +163,8 @@ function MATMUL() { } return new BasicBlock(this.x); } + MATMUL.prototype.get_popup_title = function MATMUL() { + var set_param_popup_title = "Set MATMUL parameter"; + return set_param_popup_title; + } } diff --git a/js/MatrixOp/MATPINV.js b/js/MatrixOp/MATPINV.js index 3ef26d08..05f106fe 100644 --- a/js/MatrixOp/MATPINV.js +++ b/js/MatrixOp/MATPINV.js @@ -74,4 +74,8 @@ function MATPINV() { } return new BasicBlock(this.x); } + MATPINV.prototype.get_popup_title = function MATPINV() { + var set_param_popup_title = "Set MATPINV Block"; + return set_param_popup_title; + } } diff --git a/js/MatrixOp/MATRESH.js b/js/MatrixOp/MATRESH.js index 5a95d422..74c9e6ce 100644 --- a/js/MatrixOp/MATRESH.js +++ b/js/MatrixOp/MATRESH.js @@ -109,4 +109,8 @@ function MATRESH() { needcompile = resume(needcompile) return new BasicBlock(this.x); } + MATRESH.prototype.get_popup_title = function MATRESH() { + var set_param_popup_title = "Set MATRESH block parameters"; + return set_param_popup_title; + } } diff --git a/js/MatrixOp/MATSING.js b/js/MatrixOp/MATSING.js index e2ea33f1..5b33e0e7 100644 --- a/js/MatrixOp/MATSING.js +++ b/js/MatrixOp/MATSING.js @@ -103,4 +103,8 @@ function MATSING() { } return new BasicBlock(this.x); } + MATSING.prototype.get_popup_title = function MATSING() { + var set_param_popup_title = "Set MATSVD block parameters"; + return set_param_popup_title; + } } diff --git a/js/MatrixOp/MATSUM.js b/js/MatrixOp/MATSUM.js index 3036d6af..efa7a21f 100644 --- a/js/MatrixOp/MATSUM.js +++ b/js/MatrixOp/MATSUM.js @@ -104,4 +104,8 @@ function MATSUM() { } return new BasicBlock(this.x); } + MATSUM.prototype.get_popup_title = function MATSUM() { + var set_param_popup_title = "Set MATSUM block parameters"; + return set_param_popup_title; + } } diff --git a/js/MatrixOp/MATTRAN.js b/js/MatrixOp/MATTRAN.js index 92472204..735ff083 100644 --- a/js/MatrixOp/MATTRAN.js +++ b/js/MatrixOp/MATTRAN.js @@ -68,4 +68,8 @@ function MATTRAN() { } return new BasicBlock(this.x); } + MATTRAN.prototype.get_popup_title = function MATTRAN() { + var set_param_popup_title = "Set MATTRAN Block"; + return set_param_popup_title; + } } diff --git a/js/MatrixOp/MATZCONJ.js b/js/MatrixOp/MATZCONJ.js index 0a565ca9..66124e3e 100644 --- a/js/MatrixOp/MATZCONJ.js +++ b/js/MatrixOp/MATZCONJ.js @@ -34,4 +34,8 @@ function MATZCONJ() { MATZCONJ.prototype.set = function MATZCONJ() { return new BasicBlock(this.x); } + MATZCONJ.prototype.get_popup_title = function MATZCONJ() { + var set_param_popup_title = "Set parameters"; + return set_param_popup_title; + } } diff --git a/js/MatrixOp/MATZREIM.js b/js/MatrixOp/MATZREIM.js index d9af3dce..3a9bdb58 100644 --- a/js/MatrixOp/MATZREIM.js +++ b/js/MatrixOp/MATZREIM.js @@ -79,4 +79,8 @@ function MATZREIM() { } return new BasicBlock(this.x); } + MATZREIM.prototype.get_popup_title = function MATZREIM() { + var set_param_popup_title = "Set MATZREIM block parameters"; + return set_param_popup_title; + } } diff --git a/js/MatrixOp/RICC.js b/js/MatrixOp/RICC.js index 434970f8..17dabe4d 100644 --- a/js/MatrixOp/RICC.js +++ b/js/MatrixOp/RICC.js @@ -64,4 +64,8 @@ function RICC() { } return new BasicBlock(this.x); } + RICC.prototype.get_popup_title = function RICC() { + var set_param_popup_title = "Set RICC Block"; + return set_param_popup_title; + } } diff --git a/js/MatrixOp/ROOTCOEF.js b/js/MatrixOp/ROOTCOEF.js index 453b075b..59868153 100644 --- a/js/MatrixOp/ROOTCOEF.js +++ b/js/MatrixOp/ROOTCOEF.js @@ -76,4 +76,8 @@ function ROOTCOEF() { } return new BasicBlock(this.x); } + ROOTCOEF.prototype.get_popup_title = function ROOTCOEF() { + var set_param_popup_title = "Set ROOTCOEF Block"; + return set_param_popup_title; + } } diff --git a/js/MatrixOp/SQRT.js b/js/MatrixOp/SQRT.js index 2053045f..3c4ae835 100644 --- a/js/MatrixOp/SQRT.js +++ b/js/MatrixOp/SQRT.js @@ -59,4 +59,8 @@ function SQRT() { } return new BasicBlock(this.x); } + SQRT.prototype.get_popup_title = function SQRT() { + var set_param_popup_title = "Set SQRT Block"; + return set_param_popup_title; + } } diff --git a/js/MatrixOp/SUBMAT.js b/js/MatrixOp/SUBMAT.js index 39700035..b37ba3c6 100644 --- a/js/MatrixOp/SUBMAT.js +++ b/js/MatrixOp/SUBMAT.js @@ -110,4 +110,8 @@ function SUBMAT() { } return new BasicBlock(this.x); } + SUBMAT.prototype.get_popup_title = function SUBMAT() { + var set_param_popup_title = "Set SUBMAT Block"; + return set_param_popup_title; + } } |