From 0047c3bea1d86b12a08544f6f0833c63e77f6eac Mon Sep 17 00:00:00 2001 From: Sunil Shetye Date: Wed, 11 Jul 2018 15:19:38 +0530 Subject: support vector also --- js/NonLinear/LOOKUP_c.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'js/NonLinear/LOOKUP_c.js') diff --git a/js/NonLinear/LOOKUP_c.js b/js/NonLinear/LOOKUP_c.js index 29655d2e..c569f4d7 100644 --- a/js/NonLinear/LOOKUP_c.js +++ b/js/NonLinear/LOOKUP_c.js @@ -17,9 +17,9 @@ function LOOKUP_c() { this.model.rpar = new ScilabDouble([this.xx.slice()],[this.yy.slice()]); this.model.ipar = new ScilabDouble([N],[this.Method],[0],[0]); this.model.blocktype = new ScilabString(["c"]); - this.model.dep_ut = [true,false]; - this.model.evtin = []; - this.model.evtout = []; + this.model.dep_ut = new ScilabDouble([true,false]); + this.model.evtin = new ScilabDouble([]); + this.model.evtout = new ScilabDouble([]); this.model.firing = new ScilabDouble([0]); var exprs = [[sci2exp(this.Method)],[sci2exp(this.xx)],[sci2exp(this.yy)],[sci2exp(0)],[Graf]]; var gr_i = []; -- cgit