From ca1a67f78f7de40a7956c69e41f4ddae2542f4f2 Mon Sep 17 00:00:00 2001 From: Sunil Shetye Date: Mon, 2 Jul 2018 22:51:03 +0530 Subject: add options block --- js/NonLinear/DLRADAPT_f.js | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'js/NonLinear/DLRADAPT_f.js') diff --git a/js/NonLinear/DLRADAPT_f.js b/js/NonLinear/DLRADAPT_f.js index b8018d7b..3bb3e9bd 100644 --- a/js/NonLinear/DLRADAPT_f.js +++ b/js/NonLinear/DLRADAPT_f.js @@ -27,6 +27,15 @@ function DLRADAPT_f() { return this.x; } DLRADAPT_f.prototype.get = function DLRADAPT_f() { + var options = { + p:["Vector of p mesh points",this.p], + 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], + last_u:["past inputs (Num degree values)",this.last_u], + last_y:["past outputs (Den degree values)",this.last_y], + } + return options; } DLRADAPT_f.prototype.set = function DLRADAPT_f() { this.p = parseFloat((arguments[0]["p"])) -- cgit