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


	var model = scicos_model();
	model.sim=list("matmul_m",4);
	model.in = new ScilabDouble([-1],[-2]);
	model.in2 = new ScilabDouble([-2],[-3]);
	model.out = new ScilabDouble([-1]);
	model.out2 = new ScilabDouble([-3]);
	model.dep_ut = new ScilabBoolean([true,false]);
	model.ipar = new ScilabDouble([1]);

	var label = [sci2exp(model.ipar)];

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