blob: 42af6954d8d28257027a8f1b21af45cc8f37f660 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
function MATMUL () {
var model = scicos_model();
model.sim=list(new ScilabString(["matmul_m"]),new ScilabDouble([4]));
model.in1 = 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);
return new BasicBlock(this.x)
}
|