blob: 1c6b9e568503e914477c3e75a761db646ecd18c1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
function CLINDUMMY_f () {
var x0 = 0;
var model = scicos_model();
model.sim=list("cdummy",4);
model.state=new ScilabDouble([x0]);
model.blocktype = new ScilabString(["c"]);
model.firing = new ScilabDouble();
model.dep_ut = new ScilabBoolean([false,true]);
var gr_i = [];
this.x=new standard_define(new ScilabDouble([3,2]),model,[],gr_i);
}
|