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