blob: b32a51f59936334c90915a6bec3fd338fd637456 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
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);
}
|