blob: 7d5b1292a2d30e7e3856c1228c44b7d1bf6e5acd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
function VirtualCLK0 () {
var model = scicos_model();
model.sim = new ScilabString(["vrtclk0"]);
model.evtin = new ScilabDouble([1]);
model.opar=list();
model.ipar = new ScilabDouble();
model.blocktype = new ScilabString(["d"]);
model.firing = new ScilabDouble([-1]);
model.dep_ut = new ScilabBoolean([false,false]);
var exprs = [];
this.x=new standard_define(new ScilabDouble([2,2]),model,exprs," ");
}
|