summaryrefslogtreecommitdiff
path: root/data_structures/Extract_Activation.js
diff options
context:
space:
mode:
authorASP12342016-06-23 06:09:00 +0000
committerASP12342016-06-23 06:09:00 +0000
commit84cf1f0a1f2106d6a21a6d30ae064365854dd727 (patch)
tree2a1dcf2321735e2b67eeaf5d7991282274191d60 /data_structures/Extract_Activation.js
parent3353738f687567fd643e308b4755e5ee1f8f090a (diff)
downloadxcos-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.js3
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)
}