From 5a28e41a3105338f747b8a30f67000920490c67d Mon Sep 17 00:00:00 2001 From: Sunil Shetye Date: Fri, 6 Jul 2018 10:38:38 +0530 Subject: make string as the default type --- js/Linear/DIFF_c.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'js/Linear/DIFF_c.js') diff --git a/js/Linear/DIFF_c.js b/js/Linear/DIFF_c.js index 26705c2d..dd3f6722 100644 --- a/js/Linear/DIFF_c.js +++ b/js/Linear/DIFF_c.js @@ -25,8 +25,8 @@ function DIFF_c() { return options; } DIFF_c.prototype.set = function DIFF_c() { - this.x0 = inverse((arguments[0]["x0"])) - this.xd0 = inverse((arguments[0]["xd0"])) + this.x0 = inverse(arguments[0]["x0"]) + this.xd0 = inverse(arguments[0]["xd0"]) this.x = arg1; graphics = arg1.graphics; exprs = graphics.exprs; -- cgit