summaryrefslogtreecommitdiff
path: root/data_structures/DLSS.js
diff options
context:
space:
mode:
Diffstat (limited to 'data_structures/DLSS.js')
-rw-r--r--data_structures/DLSS.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/data_structures/DLSS.js b/data_structures/DLSS.js
index 9dbfc7b..e946ae2 100644
--- a/data_structures/DLSS.js
+++ b/data_structures/DLSS.js
@@ -12,8 +12,8 @@ function DLSS () {
var D = 0;
var model = scicos_model();
- model.sim=list("dsslti4",4);
- model.in = new ScilabDouble([1]);
+ model.sim=list(new ScilabString(["dsslti4"]),new ScilabDouble([4]));
+ model.in1 = new ScilabDouble([1]);
model.out = new ScilabDouble([1]);
model.evtin = new ScilabDouble([1]);
model.dstate=...x0;
@@ -25,4 +25,5 @@ function DLSS () {
var gr_i = [];
this.x=new standard_define(new ScilabDouble([4,2]),model,exprs,gr_i);
+ return new BasicBlock(this.x)
}