diff options
author | Sunil Shetye | 2018-07-11 15:19:38 +0530 |
---|---|---|
committer | Sunil Shetye | 2018-07-11 15:21:08 +0530 |
commit | 0047c3bea1d86b12a08544f6f0833c63e77f6eac (patch) | |
tree | 36fc72fa9e5ea73c64a44e061b2c9c80e0307884 /js/Sources/Ground_g.js | |
parent | 079d0b4a3ec15a4d7d2644484d116df9d1c694bb (diff) | |
download | sci2js-0047c3bea1d86b12a08544f6f0833c63e77f6eac.tar.gz sci2js-0047c3bea1d86b12a08544f6f0833c63e77f6eac.tar.bz2 sci2js-0047c3bea1d86b12a08544f6f0833c63e77f6eac.zip |
support vector also
Diffstat (limited to 'js/Sources/Ground_g.js')
-rw-r--r-- | js/Sources/Ground_g.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/js/Sources/Ground_g.js b/js/Sources/Ground_g.js index 726a9fd1..98dfe03e 100644 --- a/js/Sources/Ground_g.js +++ b/js/Sources/Ground_g.js @@ -4,15 +4,15 @@ function Ground_g() { var C = [0]; this.model = scicos_model(); this.model.sim = list(new ScilabString(["cstblk4_m"]), new ScilabDouble([4])); - this.model.in1 = []; + this.model.in1 = new ScilabDouble([]); this.model.out = new ScilabDouble([1]); - this.model.in2 = []; + this.model.in2 = new ScilabDouble([]); this.model.out2 = new ScilabDouble([1]); this.model.outtyp = new ScilabDouble([-1]); - this.model.rpar = []; + this.model.rpar = new ScilabDouble([]); this.model.opar = list(C); this.model.blocktype = new ScilabString(["d"]); - this.model.dep_ut = [false,false]; + this.model.dep_ut = new ScilabDouble([false,false]); var exprs = []; var gr_i = []; this.x = standard_define([2,2],this.model,exprs,gr_i); |