blob: 69d4312362e65229d75a56bc02b0e6daaa236da2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
function TIME_f () {
var model = scicos_model();
model.sim = new ScilabString(["timblk"]);
model.out = new ScilabDouble([1]);
model.blocktype = new ScilabString(["c"]);
model.dep_ut = new ScilabBoolean([false,true]);
var gr_i = [];
this.x=new standard_define(new ScilabDouble([2,2]),model,[],gr_i);
return new BasicBlock(this.x)
}
|