diff options
author | ASP1234 | 2016-06-23 12:05:11 +0000 |
---|---|---|
committer | ASP1234 | 2016-06-23 12:05:11 +0000 |
commit | af8c2a7238eccca7680432b4b3439f5f668db518 (patch) | |
tree | ba887ecfa9b832d586ed9a21d76ba558b81d7eaa /data_structures_correct | |
parent | fa454f066ef830b14e4c22f03451a18f06ff25e1 (diff) | |
download | xcos-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.js | 19 |
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; + } +} |