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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
/* autogenerated from "macros/Events/MFCLCK_f.sci" */
function MFCLCK_f() {
MFCLCK_f.prototype.define = function MFCLCK_f() {
nn = 2;
dt = 0.1;
model = scicos_model();
model.sim = "mfclck";
model.evtin = 1;
model.evtout = [[1],[1]];
model.dstate = 0;
model.rpar = dt;
model.ipar = nn;
model.blocktype = "d";
model.firing = [-1,0];
model.dep_ut = [false,false];
exprs = [[string(dt)],[string(nn)]];
gr_i = [];
x = standard_define([3,2],model,exprs,gr_i);
}
MFCLCK_f.prototype.details = function MFCLCK_f() {
}
MFCLCK_f.prototype.get = function MFCLCK_f() {
}
MFCLCK_f.prototype.set = function MFCLCK_f() {
x = arg1;
graphics = arg1.graphics;
exprs = graphics.exprs;
model = arg1.model;
[ok,dt,nn,exprs] = scicos_getvalue("Set Multifrequency clock parameters",[["basic period (1/f)"],["multiply by (n)"]],list("vec",1,"vec",1),exprs);
if (ok) {
model.ipar = nn;
model.rpar = dt;
hh = model.firing;
hh[2-1] = 0;
model.firing = hh;
graphics.exprs = exprs;
x.graphics = graphics;
x.model = model;
}
}
}
|