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