diff options
Diffstat (limited to 'js/MatrixOp/RICC.js')
-rw-r--r-- | js/MatrixOp/RICC.js | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/js/MatrixOp/RICC.js b/js/MatrixOp/RICC.js index 8ab320ba..6de43443 100644 --- a/js/MatrixOp/RICC.js +++ b/js/MatrixOp/RICC.js @@ -39,8 +39,8 @@ function RICC() { this.tpe = arguments[0]["tpe"] this.mod = arguments[0]["mod"] this.x = arg1; - var graphics = arg1.graphics; - var label = graphics.exprs; + this.graphics = arg1.graphics; + var label = this.graphics.exprs; this.model = arg1.model; if (size(label,"*")==14) { label[9-1] = []; @@ -55,14 +55,14 @@ function RICC() { var it = [1,1,1]; var ot = 1; var label = exprs; - var tmpvar0 = set_io(this.model,graphics,list(in1,it),list(out,ot),[],[]) - this.model = tmpvar0[0] - var graphics = tmpvar0[1] + var tmpvar0 = set_io(this.model,this.graphics,list(in1,it),list(out,ot),[],[]); + this.model = tmpvar0[0]; + this.graphics = tmpvar0[1]; var ok = tmpvar0[2]; if (ok) { this.model.ipar = new ScilabDouble([this.tpe],[this.mod]); - graphics.exprs = label; - arg1.graphics = graphics; + this.graphics.exprs = new ScilabDouble([label]); + arg1.graphics = this.graphics; arg1.model = this.model; this.x = arg1; break; |