From 6ee02952c836bb31e9b51783e6a16724fba64637 Mon Sep 17 00:00:00 2001 From: Sunil Shetye Date: Fri, 13 Jul 2018 15:37:42 +0530 Subject: change in1 to in --- js/Linear/CLR.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'js/Linear/CLR.js') diff --git a/js/Linear/CLR.js b/js/Linear/CLR.js index 0ae65202..90b97f0c 100644 --- a/js/Linear/CLR.js +++ b/js/Linear/CLR.js @@ -9,7 +9,7 @@ function CLR() { this.exprs = [["1"],["1+s"]]; this.model = scicos_model(); this.model.sim = list(new ScilabString(["csslti4"]), new ScilabDouble([4])); - this.model.in1 = new ScilabDouble([1]); + this.model.in = new ScilabDouble([1]); this.model.out = new ScilabDouble([1]); this.model.state = new ScilabDouble([x0]); this.model.rpar = new ScilabDouble([A.slice()],[B.slice()],[C.slice()],[D.slice()]); @@ -33,10 +33,7 @@ function CLR() { this.num = arguments[0]["num"] this.den = arguments[0]["den"] this.exprs = arguments[0]["exprs"] - this.x = arg1; - this.graphics = arg1.graphics; this.exprs = this.graphics.exprs; - this.model = arg1.model; var x0 = this.model.state; var rpar = this.model.rpar; var ns = prod(size(x0)); -- cgit