diff options
author | Adhitya Kamakshidasan | 2016-06-23 17:37:38 +0530 |
---|---|---|
committer | GitHub | 2016-06-23 17:37:38 +0530 |
commit | 3397a617d01c255d17661580169dc92ce98cb176 (patch) | |
tree | ba887ecfa9b832d586ed9a21d76ba558b81d7eaa | |
parent | 6e08c4164c3a7c68aeeaad32450573f99c35cde2 (diff) | |
parent | af8c2a7238eccca7680432b4b3439f5f668db518 (diff) | |
download | xcos-on-web-3397a617d01c255d17661580169dc92ce98cb176.tar.gz xcos-on-web-3397a617d01c255d17661580169dc92ce98cb176.tar.bz2 xcos-on-web-3397a617d01c255d17661580169dc92ce98cb176.zip |
Merge pull request #66 from ASP1234/master
Implement CLKSOMV_f Block
-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; + } +} |