blob: fcbe8e6e8570ee0deda148bc4d6f7390b73532e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
function SAWTOOTH_f () {
var model = scicos_model();
model.sim = new ScilabString(["sawtth"]);
model.out = new ScilabDouble([1]);
model.evtin = new ScilabDouble([1]);
model.dstate = new ScilabDouble([0]);
model.blocktype = new ScilabString(["c"]);
model.dep_ut = new ScilabBoolean([false,true]);
var exprs = " ";
var gr_i = [];
this.x=new standard_define(new ScilabDouble([3,2]),model,exprs,gr_i);
return new BasicBlock(this.x)
}
|