diff options
author | Sunil Shetye | 2018-07-06 12:20:13 +0530 |
---|---|---|
committer | Sunil Shetye | 2018-07-09 12:16:25 +0530 |
commit | 5c011853630a1b466ef4789d5b600dd530d0a3ec (patch) | |
tree | fe2935154d2c500f1d883a4b319235bb67628477 /js/NonLinear/DLRADAPT_f.js | |
parent | 5a28e41a3105338f747b8a30f67000920490c67d (diff) | |
download | sci2js-5c011853630a1b466ef4789d5b600dd530d0a3ec.tar.gz sci2js-5c011853630a1b466ef4789d5b600dd530d0a3ec.tar.bz2 sci2js-5c011853630a1b466ef4789d5b600dd530d0a3ec.zip |
use different syntax for matrix options
Diffstat (limited to 'js/NonLinear/DLRADAPT_f.js')
-rw-r--r-- | js/NonLinear/DLRADAPT_f.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/js/NonLinear/DLRADAPT_f.js b/js/NonLinear/DLRADAPT_f.js index caadf701..c04d1814 100644 --- a/js/NonLinear/DLRADAPT_f.js +++ b/js/NonLinear/DLRADAPT_f.js @@ -28,12 +28,12 @@ function DLRADAPT_f() { } DLRADAPT_f.prototype.get = function DLRADAPT_f() { var options = { - p:["Vector of p mesh points",this.p], + p:["Vector of p mesh points",this.p.toString().replace(/,/g," ")], rn:["Numerator roots (one line for each mesh)",this.rn], - rd:["Denominator roots (one line for each mesh)",this.rd], - g:["Vector of gain at mesh points",this.g], + rd:["Denominator roots (one line for each mesh)",this.rd.toString().replace(/,/g," ")], + g:["Vector of gain at mesh points",this.g.toString().replace(/,/g," ")], last_u:["past inputs (Num degree values)",this.last_u], - last_y:["past outputs (Den degree values)",this.last_y], + last_y:["past outputs (Den degree values)",this.last_y.toString().replace(/,/g," ")], } return options; } |