diff options
Diffstat (limited to 'js/NonLinear/TANBLK_f.js')
-rw-r--r-- | js/NonLinear/TANBLK_f.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/js/NonLinear/TANBLK_f.js b/js/NonLinear/TANBLK_f.js index c422297a..80e107cb 100644 --- a/js/NonLinear/TANBLK_f.js +++ b/js/NonLinear/TANBLK_f.js @@ -3,10 +3,10 @@ function TANBLK_f() { TANBLK_f.prototype.define = function TANBLK_f() { in1 = -1; this.model = scicos_model(); - this.model.sim = new ScilabString("tanblk"); - this.model.in1 = new ScilabDouble(in1); - this.model.out = new ScilabDouble(in1); - this.model.blocktype = new ScilabString("c"); + this.model.sim = new ScilabString(["tanblk"]); + this.model.in1 = new ScilabDouble([in1]); + this.model.out = new ScilabDouble([in1]); + this.model.blocktype = new ScilabString(["c"]); this.model.dep_ut = [true,false]; exprs = sci2exp(in1); gr_i = []; |