From 5c011853630a1b466ef4789d5b600dd530d0a3ec Mon Sep 17 00:00:00 2001 From: Sunil Shetye Date: Fri, 6 Jul 2018 12:20:13 +0530 Subject: use different syntax for matrix options --- js/NonLinear/DLRADAPT_f.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'js/NonLinear/DLRADAPT_f.js') 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; } -- cgit