blob: 5914708d589cbf50a65b93870097a9fac81d2c60 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
/* autogenerated from "macros/Events/CLKSPLIT_f.sci" */
function CLKSPLIT_f() {
CLKSPLIT_f.prototype.define = function CLKSPLIT_f() {
this.model = scicos_model();
this.model.sim = new ScilabString(["split"]);
this.model.evtin = new ScilabDouble([1]);
this.model.evtout = new ScilabDouble([1],[1]);
this.model.blocktype = new ScilabString(["d"]);
this.model.firing = new ScilabDouble([false,false,false]);
this.model.dep_ut = new ScilabDouble([false,false]);
this.x = new standard_define(new ScilabDouble([1,1]),this.model,[],[]);
return new BasicBlock(this.x);
}
CLKSPLIT_f.prototype.details = function CLKSPLIT_f() {
return this.x;
}
CLKSPLIT_f.prototype.get = function CLKSPLIT_f() {
var options = {
}
return options;
}
CLKSPLIT_f.prototype.set = function CLKSPLIT_f() {
return new BasicBlock(this.x);
}
}
|