diff options
Diffstat (limited to 'js/NonLinear/INTRPLBLK_f.js')
-rw-r--r-- | js/NonLinear/INTRPLBLK_f.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/js/NonLinear/INTRPLBLK_f.js b/js/NonLinear/INTRPLBLK_f.js index 84011cdd..fd4e720d 100644 --- a/js/NonLinear/INTRPLBLK_f.js +++ b/js/NonLinear/INTRPLBLK_f.js @@ -7,7 +7,7 @@ function INTRPLBLK_f() { this.model.sim = new ScilabString(["intrpl"]); this.model.in1 = new ScilabDouble([1]); this.model.out = new ScilabDouble([1]); - this.model.rpar = [[this.a],[this.b]]; + this.model.rpar = new ScilabDouble([this.a],[this.b]); this.model.blocktype = new ScilabString(["c"]); this.model.dep_ut = [true,false]; exprs = [[strcat(sci2exp(this.a))],[strcat(sci2exp(this.b))]]; @@ -44,7 +44,7 @@ function INTRPLBLK_f() { } else { if (ok) { graphics.exprs = exprs; - this.model.rpar = [[this.a.slice()],[this.b.slice()]]; + this.model.rpar = new ScilabDouble([this.a.slice()],[this.b.slice()]); this.x.graphics = graphics; this.x.model = this.model; break; |