summaryrefslogtreecommitdiff
path: root/js/Misc/CONSTRAINT_c.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/Misc/CONSTRAINT_c.js')
-rw-r--r--js/Misc/CONSTRAINT_c.js16
1 files changed, 8 insertions, 8 deletions
diff --git a/js/Misc/CONSTRAINT_c.js b/js/Misc/CONSTRAINT_c.js
index 6a7ac07c..5eedd1cd 100644
--- a/js/Misc/CONSTRAINT_c.js
+++ b/js/Misc/CONSTRAINT_c.js
@@ -3,12 +3,12 @@ function CONSTRAINT_c() {
CONSTRAINT_c.prototype.define = function CONSTRAINT_c() {
this.x0 = [[0],[0]];
this.model = scicos_model();
- this.model.sim = list(new ScilabString("constraint_c"),new ScilabDouble(10004));
- this.model.in1 = new ScilabDouble(1);
- this.model.out = new ScilabDouble(1);
- this.model.ipar = new ScilabDouble(0);
+ this.model.sim = list(new ScilabString(["constraint_c"]), new ScilabDouble([10004]));
+ this.model.in1 = new ScilabDouble([1]);
+ this.model.out = new ScilabDouble([1]);
+ this.model.ipar = new ScilabDouble([0]);
this.model.state = this.x0;
- this.model.blocktype = new ScilabString("c");
+ this.model.blocktype = new ScilabString(["c"]);
this.model.dep_ut = [false,true];
exprs = "0";
gr_i = [];
@@ -43,9 +43,9 @@ function CONSTRAINT_c() {
if (ok) {
graphics.exprs = exprs;
this.model.state = [[this.x0],[zeros(N,1)]];
- this.model.out = new ScilabDouble(N);
- this.model.in1 = new ScilabDouble(N);
- this.model.ipar = new ScilabDouble(-1*ones(N,1));
+ this.model.out = new ScilabDouble([N]);
+ this.model.in1 = new ScilabDouble([N]);
+ this.model.ipar = new ScilabDouble([-1*ones(N,1)]);
this.x.graphics = graphics;
this.x.model = this.model;
break;