diff options
Diffstat (limited to 'js/NonLinear/FSV_f.js')
-rw-r--r-- | js/NonLinear/FSV_f.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/js/NonLinear/FSV_f.js b/js/NonLinear/FSV_f.js index 8820fd33..eedc7cf2 100644 --- a/js/NonLinear/FSV_f.js +++ b/js/NonLinear/FSV_f.js @@ -10,13 +10,14 @@ function FSV_f() { model.dep_ut = [true,false]; exprs = " "; gr_i = []; - x = standard_define([2,2],model,exprs,gr_i); + this.x = standard_define([2,2],model,exprs,gr_i); } FSV_f.prototype.details = function FSV_f() { + return this.x; } FSV_f.prototype.get = function FSV_f() { } FSV_f.prototype.set = function FSV_f() { - x = arg1; + this.x = arg1; } } |