summaryrefslogtreecommitdiff
path: root/js/MatrixOp/MATMUL.js
diff options
context:
space:
mode:
authorSunil Shetye2018-08-29 10:48:12 +0530
committerSunil Shetye2018-08-29 18:03:04 +0530
commit352623792d2b9400510599c487540b1e763a7d3c (patch)
tree7711522f3fcd42a9d5f22b9fa3328763452a6918 /js/MatrixOp/MATMUL.js
parent17a1beeeae647a6fbd0904a5d794ce7754df7eb2 (diff)
downloadsci2js-352623792d2b9400510599c487540b1e763a7d3c.tar.gz
sci2js-352623792d2b9400510599c487540b1e763a7d3c.tar.bz2
sci2js-352623792d2b9400510599c487540b1e763a7d3c.zip
add the common code to get method also
type is a function get the popup title from the value set in the get method
Diffstat (limited to 'js/MatrixOp/MATMUL.js')
-rw-r--r--js/MatrixOp/MATMUL.js16
1 files changed, 14 insertions, 2 deletions
diff --git a/js/MatrixOp/MATMUL.js b/js/MatrixOp/MATMUL.js
index 8f433c57..93bfe650 100644
--- a/js/MatrixOp/MATMUL.js
+++ b/js/MatrixOp/MATMUL.js
@@ -18,6 +18,19 @@ function MATMUL() {
return this.x;
}
MATMUL.prototype.get = function MATMUL() {
+ this.graphics = this.x.graphics;
+ var label = this.graphics.exprs;
+ this.model = this.x.model;
+ if (this.model.ipar.length==0) {
+ this.model.ipar = new ScilabDouble([1]);
+ }
+ if (size(label,"*")==1) {
+ label[2-1] = sci2exp(1);
+ }
+ if (size(label,"*")==2) {
+ label[3-1] = sci2exp(1);
+ }
+ this.set_param_popup_title = "Set MATMUL parameter";
var options = {
dtype:["Datatype(1=real double 2=Complex 3=int32 ...)",this.dtype],
rule:["Multiplication rule",this.rule],
@@ -165,7 +178,6 @@ 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;
+ return this.set_param_popup_title;
}
}