summaryrefslogtreecommitdiff
path: root/data_structures_correct
diff options
context:
space:
mode:
authorASP12342016-06-23 12:05:11 +0000
committerASP12342016-06-23 12:05:11 +0000
commitaf8c2a7238eccca7680432b4b3439f5f668db518 (patch)
treeba887ecfa9b832d586ed9a21d76ba558b81d7eaa /data_structures_correct
parentfa454f066ef830b14e4c22f03451a18f06ff25e1 (diff)
downloadxcos-on-web-af8c2a7238eccca7680432b4b3439f5f668db518.tar.gz
xcos-on-web-af8c2a7238eccca7680432b4b3439f5f668db518.tar.bz2
xcos-on-web-af8c2a7238eccca7680432b4b3439f5f668db518.zip
Implement CLKSOMV_f Block
Diffstat (limited to 'data_structures_correct')
-rw-r--r--data_structures_correct/CLKSOMV_f.js19
1 files changed, 19 insertions, 0 deletions
diff --git a/data_structures_correct/CLKSOMV_f.js b/data_structures_correct/CLKSOMV_f.js
new file mode 100644
index 0000000..346241f
--- /dev/null
+++ b/data_structures_correct/CLKSOMV_f.js
@@ -0,0 +1,19 @@
+function CLKSOMV_f() {
+
+ CLKSOMV_f.prototype.define = function CLKSOMV_f() {
+ var model = scicos_model();
+ model.sim = new ScilabString(["sum"]);
+ model.evtin = new ScilabDouble([1], [1], [1]);
+ model.evtout = new ScilabDouble([1]);
+ model.blocktype = new ScilabString(["d"]);
+ model.firing = new ScilabDouble([-1]);
+ model.dep_ut = new ScilabBoolean([false, false]);
+
+ var gr_i = new ScilabString(["xstringb(orig(1),orig(2),\"CLKSOMV_f\",sz(1),sz(2));"]);
+ this.x = new standard_define(new ScilabDouble([2, 2]), model, new ScilabDouble(), gr_i);
+ return new RoundBlock(this.x);
+ }
+ CLKSOMV_f.prototype.details = function CLKSOMV_f() {
+ return this.x;
+ }
+}