summaryrefslogtreecommitdiff
path: root/data_structures/SAWTOOTH_f.js
blob: 085851a9853b44103c99a07ce4729e42efe6fb40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
function SAWTOOTH_f () {


	var model = scicos_model();
	model.sim = new ScilabString(["sawtth"]);
	model.out = new ScilabDouble([1]);
	model.evtin = new ScilabDouble([1]);
	model.dstate = new ScilabDouble([0]);
	model.blocktype = new ScilabString(["c"]);
	model.dep_ut = new ScilabBoolean([false,true]);

	var exprs = " ";

	var gr_i = [];
	this.x=new standard_define(new ScilabDouble([3,2]),model,exprs,gr_i);
}