diff options
Diffstat (limited to 'js/NonLinear')
-rw-r--r-- | js/NonLinear/DLRADAPT_f.js | 8 | ||||
-rw-r--r-- | js/NonLinear/INTRP2BLK_f.js | 6 | ||||
-rw-r--r-- | js/NonLinear/INTRPLBLK_f.js | 4 | ||||
-rw-r--r-- | js/NonLinear/LOOKUP2D.js | 2 |
4 files changed, 10 insertions, 10 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; } diff --git a/js/NonLinear/INTRP2BLK_f.js b/js/NonLinear/INTRP2BLK_f.js index dfae286e..16d28b77 100644 --- a/js/NonLinear/INTRP2BLK_f.js +++ b/js/NonLinear/INTRP2BLK_f.js @@ -22,9 +22,9 @@ function INTRP2BLK_f() { } INTRP2BLK_f.prototype.get = function INTRP2BLK_f() { var options = { - a:["X coord.",this.a], - b:["Y coord.",this.b], - c:["Z values",this.c], + a:["X coord.",this.a.toString().replace(/,/g," ")], + b:["Y coord.",this.b.toString().replace(/,/g," ")], + c:["Z values",this.c.toString().replace(/,/g," ")], } return options; } diff --git a/js/NonLinear/INTRPLBLK_f.js b/js/NonLinear/INTRPLBLK_f.js index 1ee8b5ce..60b67324 100644 --- a/js/NonLinear/INTRPLBLK_f.js +++ b/js/NonLinear/INTRPLBLK_f.js @@ -20,8 +20,8 @@ function INTRPLBLK_f() { } INTRPLBLK_f.prototype.get = function INTRPLBLK_f() { var options = { - a:["X coord.",this.a], - b:["Y coord.",this.b], + a:["X coord.",this.a.toString().replace(/,/g," ")], + b:["Y coord.",this.b.toString().replace(/,/g," ")], } return options; } diff --git a/js/NonLinear/LOOKUP2D.js b/js/NonLinear/LOOKUP2D.js index 0a774ebf..06d5819a 100644 --- a/js/NonLinear/LOOKUP2D.js +++ b/js/NonLinear/LOOKUP2D.js @@ -28,7 +28,7 @@ function LOOKUP2D() { var options = { xx:["Row index input values",this.xx], yy:["Column index input values",this.yy], - zz:["Table data",this.zz], + zz:["Table data",this.zz.toString().replace(/,/g," ")], Method:["Lookup method(1..5)",this.Method], graf:["Launch graphic window(y/n)?",this.graf], } |