diff options
author | Sunil Shetye | 2018-08-22 21:18:08 +0530 |
---|---|---|
committer | Sunil Shetye | 2018-08-24 10:42:26 +0530 |
commit | b560ce4b4abb5450dce9a06a7bcddde3b96c1e2c (patch) | |
tree | dafb1774870089a6754d5b1190c45c37b4a036d6 /js/Linear/INTEGRAL_f.js | |
parent | f5bdd141a4fd73a98e98523fb6531d48ed5d9904 (diff) | |
download | sci2js-b560ce4b4abb5450dce9a06a7bcddde3b96c1e2c.tar.gz sci2js-b560ce4b4abb5450dce9a06a7bcddde3b96c1e2c.tar.bz2 sci2js-b560ce4b4abb5450dce9a06a7bcddde3b96c1e2c.zip |
support single option blocks
Diffstat (limited to 'js/Linear/INTEGRAL_f.js')
-rw-r--r-- | js/Linear/INTEGRAL_f.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/js/Linear/INTEGRAL_f.js b/js/Linear/INTEGRAL_f.js index 6feef192..160d3620 100644 --- a/js/Linear/INTEGRAL_f.js +++ b/js/Linear/INTEGRAL_f.js @@ -18,7 +18,10 @@ function INTEGRAL_f() { return this.x; } INTEGRAL_f.prototype.get = function INTEGRAL_f() { - alert("parameters cannot be modified"); + var options = { + x0:["Initial state",this.x0], + } + return options; } INTEGRAL_f.prototype.set = function INTEGRAL_f() { this.exprs = this.graphics.exprs; |