diff options
Diffstat (limited to 'data_structures/GENSQR_f.js')
-rw-r--r-- | data_structures/GENSQR_f.js | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/data_structures/GENSQR_f.js b/data_structures/GENSQR_f.js new file mode 100644 index 0000000..595e96b --- /dev/null +++ b/data_structures/GENSQR_f.js @@ -0,0 +1,20 @@ +function GENSQR_f () { + + + var Amplitude = 1; + + var model = scicos_model(); + model.sim = new ScilabString(["gensqr"]); + model.out = new ScilabDouble([1]); + model.out2 = new ScilabDouble([1]); + model.outtyp = new ScilabDouble([1]); + model.evtin = new ScilabDouble([1]); + model.dstate=new ScilabDouble([Amplitude]); + model.blocktype = new ScilabString(["d"]); + model.dep_ut = new ScilabBoolean([false,false]); + + var exprs = Amplitude.toString(); + + var gr_i = []; + this.x=new standard_define(new ScilabDouble([3,2]),model,exprs,gr_i); +} |