diff options
author | ASP1234 | 2016-06-23 06:09:00 +0000 |
---|---|---|
committer | ASP1234 | 2016-06-23 06:09:00 +0000 |
commit | 84cf1f0a1f2106d6a21a6d30ae064365854dd727 (patch) | |
tree | 2a1dcf2321735e2b67eeaf5d7991282274191d60 /data_structures/Extract_Activation.js | |
parent | 3353738f687567fd643e308b4755e5ee1f8f090a (diff) | |
download | xcos-on-web-84cf1f0a1f2106d6a21a6d30ae064365854dd727.tar.gz xcos-on-web-84cf1f0a1f2106d6a21a6d30ae064365854dd727.tar.bz2 xcos-on-web-84cf1f0a1f2106d6a21a6d30ae064365854dd727.zip |
Implement BOUNCE Block
Diffstat (limited to 'data_structures/Extract_Activation.js')
-rw-r--r-- | data_structures/Extract_Activation.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/data_structures/Extract_Activation.js b/data_structures/Extract_Activation.js index 399e3f7..ed98bf4 100644 --- a/data_structures/Extract_Activation.js +++ b/data_structures/Extract_Activation.js @@ -82,10 +82,11 @@ function Extract_Activation () { clear blk lnk model=scicos_model(); model.sim = new ScilabString(["csuper"]); - model.in = new ScilabDouble([1]); + model.in1 = new ScilabDouble([1]); model.evtout = new ScilabDouble([1]); model.rpar=scs_m_1; var gr_i = []; this.x=new standard_define(new ScilabDouble([3,2]),model,[],gr_i); + return new BasicBlock(this.x) } |