├── .eslintignore ├── .eslintrc.json ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── npmpublish.yml ├── .gitignore ├── .npmrc ├── .prettierignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── __test__ ├── browser.html ├── browser.js ├── test.js └── theorem.js ├── dist ├── theorem.js └── theorem.min.js ├── docs ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .htaccess ├── 404.html ├── CNAME ├── LICENSE.txt ├── browserconfig.xml ├── css │ ├── main.css │ └── normalize.css ├── desc │ ├── .editorconfig │ ├── .gitattributes │ ├── .gitignore │ ├── .htaccess │ ├── 404.html │ ├── LICENSE.txt │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── browserconfig.xml │ ├── config.json │ ├── css │ │ ├── main.css │ │ └── normalize.css │ ├── doc │ │ ├── TOC.md │ │ ├── css.md │ │ ├── extend.md │ │ ├── faq.md │ │ ├── html.md │ │ ├── js.md │ │ ├── misc.md │ │ └── usage.md │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── humans.txt │ ├── icon.png │ ├── img │ │ ├── .gitignore │ │ ├── load.svg │ │ ├── logo.png │ │ └── logo.svg │ ├── index.html │ ├── js │ │ ├── main.js │ │ ├── plugins.js │ │ └── vendor │ │ │ ├── jquery-3.2.1.min-min.js │ │ │ └── modernizr-3.5.0.min.js │ ├── mstile-150x150.png │ ├── robots.txt │ ├── safari-pinned-tab.svg │ ├── site.webmanifest │ ├── tile-wide.png │ └── tile.png ├── doc │ ├── TOC.md │ ├── css.md │ ├── extend.md │ ├── faq.md │ ├── html.md │ ├── js.md │ ├── misc.md │ └── usage.md ├── docs │ ├── .editorconfig │ ├── .gitattributes │ ├── .gitignore │ ├── .htaccess │ ├── 404.html │ ├── LICENSE.txt │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── browserconfig.xml │ ├── config.json │ ├── css │ │ ├── main.css │ │ └── normalize.css │ ├── doc │ │ ├── TOC.md │ │ ├── css.md │ │ ├── extend.md │ │ ├── faq.md │ │ ├── html.md │ │ ├── js.md │ │ ├── misc.md │ │ └── usage.md │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── humans.txt │ ├── icon.png │ ├── img │ │ ├── .gitignore │ │ ├── load.svg │ │ ├── logo.png │ │ └── logo.svg │ ├── index.html │ ├── js │ │ ├── main.js │ │ ├── plugins.js │ │ └── vendor │ │ │ ├── jquery-3.2.1.min-min.js │ │ │ └── modernizr-3.5.0.min.js │ ├── mstile-150x150.png │ ├── robots.txt │ ├── safari-pinned-tab.svg │ ├── site.webmanifest │ ├── tile-wide.png │ └── tile.png ├── favicon.ico ├── humans.txt ├── icon.png ├── img │ ├── .gitignore │ ├── TheoremJS.png │ ├── TheoremJS.svg │ └── marketing.jpg ├── index.html ├── js │ ├── main.js │ ├── plugins.js │ └── vendor │ │ ├── jquery-3.2.1.min.js │ │ └── modernizr-3.5.0.min.js ├── robots.txt ├── site.webmanifest ├── tile-wide.png └── tile.png ├── gulpfile.js ├── package.json └── src ├── base.js └── includes ├── functions ├── array │ ├── flatten.js │ ├── linspace.js │ ├── range.js │ ├── reshape.js │ └── reverse.js ├── constructor.js ├── cryptography │ ├── bin2str.js │ ├── huffman.js │ ├── md5.js │ ├── sha256.js │ └── str2bin.js ├── includes.js ├── math │ ├── algebra │ │ ├── derivate.js │ │ ├── f.js │ │ ├── findRoots.js │ │ ├── gaussElimination.js │ │ ├── gradient.js │ │ ├── graph.js │ │ ├── integrate.js │ │ ├── numeralSolve.js │ │ ├── polynomial.js │ │ ├── run.js │ │ ├── slope.js │ │ └── y-intercept.js │ ├── complex │ │ ├── complex.js │ │ ├── i.js │ │ └── src │ │ │ ├── abs.js │ │ │ ├── arg.js │ │ │ ├── clone.js │ │ │ ├── conjugate.js │ │ │ ├── constructor.js │ │ │ ├── div.js │ │ │ ├── equal.js │ │ │ ├── exp.js │ │ │ ├── isComplex.js │ │ │ ├── ln.js │ │ │ ├── log.js │ │ │ ├── minus.js │ │ │ ├── negated.js │ │ │ ├── plus.js │ │ │ ├── pow.js │ │ │ ├── times.js │ │ │ └── toString.js │ ├── fractions │ │ ├── toDec.js │ │ └── toFraction.js │ ├── generators │ │ ├── collatz.js │ │ ├── fibonacci.js │ │ └── sieve.js │ ├── math │ │ ├── exp.js │ │ ├── factorial.js │ │ ├── gamma.js │ │ ├── ln.js │ │ ├── lngamma.js │ │ ├── log.js │ │ ├── pow.js │ │ ├── root.js │ │ ├── sigmoid.js │ │ └── sqrt.js │ ├── numbers │ │ ├── abs.js │ │ ├── c.js │ │ ├── ceil.js │ │ ├── e.js │ │ ├── floor.js │ │ ├── goldenRatio.js │ │ ├── isPrime.js │ │ ├── leastFactor.js │ │ ├── n.js │ │ ├── nPrime.js │ │ ├── pi.js │ │ ├── primeFactors.js │ │ ├── primePi.js │ │ └── round.js │ ├── other │ │ ├── apply.js │ │ ├── max.js │ │ ├── min.js │ │ ├── product.js │ │ ├── sort.js │ │ └── sum.js │ ├── random │ │ └── rand.js │ ├── stats │ │ ├── average.js │ │ ├── correlation.js │ │ ├── mean.js │ │ ├── median.js │ │ ├── quantile.js │ │ ├── regression.js │ │ ├── std.js │ │ └── variance.js │ ├── trig │ │ ├── acos.js │ │ ├── acosh.js │ │ ├── angle2Vec.js │ │ ├── asin.js │ │ ├── asinh.js │ │ ├── atan.js │ │ ├── atan2.js │ │ ├── atanh.js │ │ ├── cos.js │ │ ├── cosh.js │ │ ├── deg2rad.js │ │ ├── drawCircularPoints.js │ │ ├── rad2deg.js │ │ ├── sin.js │ │ ├── sinh.js │ │ ├── tan.js │ │ └── tanh.js │ └── units │ │ ├── convert.js │ │ ├── src │ │ ├── area.js │ │ ├── distance.js │ │ ├── length.js │ │ ├── mass.js │ │ ├── speed.js │ │ ├── temperature.js │ │ ├── time.js │ │ └── volume.js │ │ └── units.js └── other │ ├── config.js │ ├── convertToBase.js │ ├── fn.js │ └── toBase10.js └── other └── export.js /.eslintignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/npmpublish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/.github/workflows/npmpublish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | @arguiot:registry=https://npm.pkg.github.com/ 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | dist/**/*.min.js 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/README.md -------------------------------------------------------------------------------- /__test__/browser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/__test__/browser.html -------------------------------------------------------------------------------- /__test__/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/__test__/browser.js -------------------------------------------------------------------------------- /__test__/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/__test__/test.js -------------------------------------------------------------------------------- /__test__/theorem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/__test__/theorem.js -------------------------------------------------------------------------------- /dist/theorem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/dist/theorem.js -------------------------------------------------------------------------------- /dist/theorem.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/dist/theorem.min.js -------------------------------------------------------------------------------- /docs/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/.editorconfig -------------------------------------------------------------------------------- /docs/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/.gitattributes -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/.htaccess -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | theorem.js.org -------------------------------------------------------------------------------- /docs/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/LICENSE.txt -------------------------------------------------------------------------------- /docs/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/browserconfig.xml -------------------------------------------------------------------------------- /docs/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/css/main.css -------------------------------------------------------------------------------- /docs/css/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/css/normalize.css -------------------------------------------------------------------------------- /docs/desc/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/desc/.editorconfig -------------------------------------------------------------------------------- /docs/desc/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/desc/.gitattributes -------------------------------------------------------------------------------- /docs/desc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/desc/.gitignore -------------------------------------------------------------------------------- /docs/desc/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/desc/.htaccess -------------------------------------------------------------------------------- /docs/desc/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/desc/404.html -------------------------------------------------------------------------------- /docs/desc/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/desc/LICENSE.txt -------------------------------------------------------------------------------- /docs/desc/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/desc/android-chrome-192x192.png -------------------------------------------------------------------------------- /docs/desc/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/desc/android-chrome-512x512.png -------------------------------------------------------------------------------- /docs/desc/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/desc/apple-touch-icon.png -------------------------------------------------------------------------------- /docs/desc/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/desc/browserconfig.xml -------------------------------------------------------------------------------- /docs/desc/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/desc/config.json -------------------------------------------------------------------------------- /docs/desc/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/desc/css/main.css -------------------------------------------------------------------------------- /docs/desc/css/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/desc/css/normalize.css -------------------------------------------------------------------------------- /docs/desc/doc/TOC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/desc/doc/TOC.md -------------------------------------------------------------------------------- /docs/desc/doc/css.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/desc/doc/css.md -------------------------------------------------------------------------------- /docs/desc/doc/extend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/desc/doc/extend.md -------------------------------------------------------------------------------- /docs/desc/doc/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/desc/doc/faq.md -------------------------------------------------------------------------------- /docs/desc/doc/html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/desc/doc/html.md -------------------------------------------------------------------------------- /docs/desc/doc/js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/desc/doc/js.md -------------------------------------------------------------------------------- /docs/desc/doc/misc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/desc/doc/misc.md -------------------------------------------------------------------------------- /docs/desc/doc/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/desc/doc/usage.md -------------------------------------------------------------------------------- /docs/desc/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/desc/favicon-16x16.png -------------------------------------------------------------------------------- /docs/desc/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/desc/favicon-32x32.png -------------------------------------------------------------------------------- /docs/desc/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/desc/favicon.ico -------------------------------------------------------------------------------- /docs/desc/humans.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/desc/humans.txt -------------------------------------------------------------------------------- /docs/desc/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/desc/icon.png -------------------------------------------------------------------------------- /docs/desc/img/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/desc/img/load.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/desc/img/load.svg -------------------------------------------------------------------------------- /docs/desc/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/desc/img/logo.png -------------------------------------------------------------------------------- /docs/desc/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/desc/img/logo.svg -------------------------------------------------------------------------------- /docs/desc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/desc/index.html -------------------------------------------------------------------------------- /docs/desc/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/desc/js/main.js -------------------------------------------------------------------------------- /docs/desc/js/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/desc/js/plugins.js -------------------------------------------------------------------------------- /docs/desc/js/vendor/jquery-3.2.1.min-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/desc/js/vendor/jquery-3.2.1.min-min.js -------------------------------------------------------------------------------- /docs/desc/js/vendor/modernizr-3.5.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/desc/js/vendor/modernizr-3.5.0.min.js -------------------------------------------------------------------------------- /docs/desc/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/desc/mstile-150x150.png -------------------------------------------------------------------------------- /docs/desc/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/desc/robots.txt -------------------------------------------------------------------------------- /docs/desc/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/desc/safari-pinned-tab.svg -------------------------------------------------------------------------------- /docs/desc/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/desc/site.webmanifest -------------------------------------------------------------------------------- /docs/desc/tile-wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/desc/tile-wide.png -------------------------------------------------------------------------------- /docs/desc/tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/desc/tile.png -------------------------------------------------------------------------------- /docs/doc/TOC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/doc/TOC.md -------------------------------------------------------------------------------- /docs/doc/css.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/doc/css.md -------------------------------------------------------------------------------- /docs/doc/extend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/doc/extend.md -------------------------------------------------------------------------------- /docs/doc/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/doc/faq.md -------------------------------------------------------------------------------- /docs/doc/html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/doc/html.md -------------------------------------------------------------------------------- /docs/doc/js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/doc/js.md -------------------------------------------------------------------------------- /docs/doc/misc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/doc/misc.md -------------------------------------------------------------------------------- /docs/doc/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/doc/usage.md -------------------------------------------------------------------------------- /docs/docs/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/docs/.editorconfig -------------------------------------------------------------------------------- /docs/docs/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/docs/.gitattributes -------------------------------------------------------------------------------- /docs/docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/docs/.gitignore -------------------------------------------------------------------------------- /docs/docs/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/docs/.htaccess -------------------------------------------------------------------------------- /docs/docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/docs/404.html -------------------------------------------------------------------------------- /docs/docs/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/docs/LICENSE.txt -------------------------------------------------------------------------------- /docs/docs/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/docs/android-chrome-192x192.png -------------------------------------------------------------------------------- /docs/docs/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/docs/android-chrome-512x512.png -------------------------------------------------------------------------------- /docs/docs/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/docs/apple-touch-icon.png -------------------------------------------------------------------------------- /docs/docs/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/docs/browserconfig.xml -------------------------------------------------------------------------------- /docs/docs/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/docs/config.json -------------------------------------------------------------------------------- /docs/docs/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/docs/css/main.css -------------------------------------------------------------------------------- /docs/docs/css/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/docs/css/normalize.css -------------------------------------------------------------------------------- /docs/docs/doc/TOC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/docs/doc/TOC.md -------------------------------------------------------------------------------- /docs/docs/doc/css.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/docs/doc/css.md -------------------------------------------------------------------------------- /docs/docs/doc/extend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/docs/doc/extend.md -------------------------------------------------------------------------------- /docs/docs/doc/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/docs/doc/faq.md -------------------------------------------------------------------------------- /docs/docs/doc/html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/docs/doc/html.md -------------------------------------------------------------------------------- /docs/docs/doc/js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/docs/doc/js.md -------------------------------------------------------------------------------- /docs/docs/doc/misc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/docs/doc/misc.md -------------------------------------------------------------------------------- /docs/docs/doc/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/docs/doc/usage.md -------------------------------------------------------------------------------- /docs/docs/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/docs/favicon-16x16.png -------------------------------------------------------------------------------- /docs/docs/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/docs/favicon-32x32.png -------------------------------------------------------------------------------- /docs/docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/docs/favicon.ico -------------------------------------------------------------------------------- /docs/docs/humans.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/docs/humans.txt -------------------------------------------------------------------------------- /docs/docs/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/docs/icon.png -------------------------------------------------------------------------------- /docs/docs/img/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/docs/img/load.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/docs/img/load.svg -------------------------------------------------------------------------------- /docs/docs/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/docs/img/logo.png -------------------------------------------------------------------------------- /docs/docs/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/docs/img/logo.svg -------------------------------------------------------------------------------- /docs/docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/docs/index.html -------------------------------------------------------------------------------- /docs/docs/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/docs/js/main.js -------------------------------------------------------------------------------- /docs/docs/js/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/docs/js/plugins.js -------------------------------------------------------------------------------- /docs/docs/js/vendor/jquery-3.2.1.min-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/docs/js/vendor/jquery-3.2.1.min-min.js -------------------------------------------------------------------------------- /docs/docs/js/vendor/modernizr-3.5.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/docs/js/vendor/modernizr-3.5.0.min.js -------------------------------------------------------------------------------- /docs/docs/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/docs/mstile-150x150.png -------------------------------------------------------------------------------- /docs/docs/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/docs/robots.txt -------------------------------------------------------------------------------- /docs/docs/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/docs/safari-pinned-tab.svg -------------------------------------------------------------------------------- /docs/docs/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/docs/site.webmanifest -------------------------------------------------------------------------------- /docs/docs/tile-wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/docs/tile-wide.png -------------------------------------------------------------------------------- /docs/docs/tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/docs/tile.png -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/humans.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/humans.txt -------------------------------------------------------------------------------- /docs/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/icon.png -------------------------------------------------------------------------------- /docs/img/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/img/TheoremJS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/img/TheoremJS.png -------------------------------------------------------------------------------- /docs/img/TheoremJS.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/img/TheoremJS.svg -------------------------------------------------------------------------------- /docs/img/marketing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/img/marketing.jpg -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/js/main.js -------------------------------------------------------------------------------- /docs/js/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/js/plugins.js -------------------------------------------------------------------------------- /docs/js/vendor/jquery-3.2.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/js/vendor/jquery-3.2.1.min.js -------------------------------------------------------------------------------- /docs/js/vendor/modernizr-3.5.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/js/vendor/modernizr-3.5.0.min.js -------------------------------------------------------------------------------- /docs/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/robots.txt -------------------------------------------------------------------------------- /docs/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/site.webmanifest -------------------------------------------------------------------------------- /docs/tile-wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/tile-wide.png -------------------------------------------------------------------------------- /docs/tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/docs/tile.png -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/package.json -------------------------------------------------------------------------------- /src/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/base.js -------------------------------------------------------------------------------- /src/includes/functions/array/flatten.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/array/flatten.js -------------------------------------------------------------------------------- /src/includes/functions/array/linspace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/array/linspace.js -------------------------------------------------------------------------------- /src/includes/functions/array/range.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/array/range.js -------------------------------------------------------------------------------- /src/includes/functions/array/reshape.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/array/reshape.js -------------------------------------------------------------------------------- /src/includes/functions/array/reverse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/array/reverse.js -------------------------------------------------------------------------------- /src/includes/functions/constructor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/constructor.js -------------------------------------------------------------------------------- /src/includes/functions/cryptography/bin2str.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/cryptography/bin2str.js -------------------------------------------------------------------------------- /src/includes/functions/cryptography/huffman.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/cryptography/huffman.js -------------------------------------------------------------------------------- /src/includes/functions/cryptography/md5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/cryptography/md5.js -------------------------------------------------------------------------------- /src/includes/functions/cryptography/sha256.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/cryptography/sha256.js -------------------------------------------------------------------------------- /src/includes/functions/cryptography/str2bin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/cryptography/str2bin.js -------------------------------------------------------------------------------- /src/includes/functions/includes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/includes.js -------------------------------------------------------------------------------- /src/includes/functions/math/algebra/derivate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/algebra/derivate.js -------------------------------------------------------------------------------- /src/includes/functions/math/algebra/f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/algebra/f.js -------------------------------------------------------------------------------- /src/includes/functions/math/algebra/findRoots.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/algebra/findRoots.js -------------------------------------------------------------------------------- /src/includes/functions/math/algebra/gaussElimination.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/algebra/gaussElimination.js -------------------------------------------------------------------------------- /src/includes/functions/math/algebra/gradient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/algebra/gradient.js -------------------------------------------------------------------------------- /src/includes/functions/math/algebra/graph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/algebra/graph.js -------------------------------------------------------------------------------- /src/includes/functions/math/algebra/integrate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/algebra/integrate.js -------------------------------------------------------------------------------- /src/includes/functions/math/algebra/numeralSolve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/algebra/numeralSolve.js -------------------------------------------------------------------------------- /src/includes/functions/math/algebra/polynomial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/algebra/polynomial.js -------------------------------------------------------------------------------- /src/includes/functions/math/algebra/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/algebra/run.js -------------------------------------------------------------------------------- /src/includes/functions/math/algebra/slope.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/algebra/slope.js -------------------------------------------------------------------------------- /src/includes/functions/math/algebra/y-intercept.js: -------------------------------------------------------------------------------- 1 | y_intercept(f) { 2 | return f.core(0) 3 | } 4 | -------------------------------------------------------------------------------- /src/includes/functions/math/complex/complex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/complex/complex.js -------------------------------------------------------------------------------- /src/includes/functions/math/complex/i.js: -------------------------------------------------------------------------------- 1 | get i () { 2 | return this.complex(0, 1) 3 | } 4 | -------------------------------------------------------------------------------- /src/includes/functions/math/complex/src/abs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/complex/src/abs.js -------------------------------------------------------------------------------- /src/includes/functions/math/complex/src/arg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/complex/src/arg.js -------------------------------------------------------------------------------- /src/includes/functions/math/complex/src/clone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/complex/src/clone.js -------------------------------------------------------------------------------- /src/includes/functions/math/complex/src/conjugate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/complex/src/conjugate.js -------------------------------------------------------------------------------- /src/includes/functions/math/complex/src/constructor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/complex/src/constructor.js -------------------------------------------------------------------------------- /src/includes/functions/math/complex/src/div.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/complex/src/div.js -------------------------------------------------------------------------------- /src/includes/functions/math/complex/src/equal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/complex/src/equal.js -------------------------------------------------------------------------------- /src/includes/functions/math/complex/src/exp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/complex/src/exp.js -------------------------------------------------------------------------------- /src/includes/functions/math/complex/src/isComplex.js: -------------------------------------------------------------------------------- 1 | get isComplex() { 2 | return true 3 | } 4 | -------------------------------------------------------------------------------- /src/includes/functions/math/complex/src/ln.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/complex/src/ln.js -------------------------------------------------------------------------------- /src/includes/functions/math/complex/src/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/complex/src/log.js -------------------------------------------------------------------------------- /src/includes/functions/math/complex/src/minus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/complex/src/minus.js -------------------------------------------------------------------------------- /src/includes/functions/math/complex/src/negated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/complex/src/negated.js -------------------------------------------------------------------------------- /src/includes/functions/math/complex/src/plus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/complex/src/plus.js -------------------------------------------------------------------------------- /src/includes/functions/math/complex/src/pow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/complex/src/pow.js -------------------------------------------------------------------------------- /src/includes/functions/math/complex/src/times.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/complex/src/times.js -------------------------------------------------------------------------------- /src/includes/functions/math/complex/src/toString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/complex/src/toString.js -------------------------------------------------------------------------------- /src/includes/functions/math/fractions/toDec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/fractions/toDec.js -------------------------------------------------------------------------------- /src/includes/functions/math/fractions/toFraction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/fractions/toFraction.js -------------------------------------------------------------------------------- /src/includes/functions/math/generators/collatz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/generators/collatz.js -------------------------------------------------------------------------------- /src/includes/functions/math/generators/fibonacci.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/generators/fibonacci.js -------------------------------------------------------------------------------- /src/includes/functions/math/generators/sieve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/generators/sieve.js -------------------------------------------------------------------------------- /src/includes/functions/math/math/exp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/math/exp.js -------------------------------------------------------------------------------- /src/includes/functions/math/math/factorial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/math/factorial.js -------------------------------------------------------------------------------- /src/includes/functions/math/math/gamma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/math/gamma.js -------------------------------------------------------------------------------- /src/includes/functions/math/math/ln.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/math/ln.js -------------------------------------------------------------------------------- /src/includes/functions/math/math/lngamma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/math/lngamma.js -------------------------------------------------------------------------------- /src/includes/functions/math/math/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/math/log.js -------------------------------------------------------------------------------- /src/includes/functions/math/math/pow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/math/pow.js -------------------------------------------------------------------------------- /src/includes/functions/math/math/root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/math/root.js -------------------------------------------------------------------------------- /src/includes/functions/math/math/sigmoid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/math/sigmoid.js -------------------------------------------------------------------------------- /src/includes/functions/math/math/sqrt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/math/sqrt.js -------------------------------------------------------------------------------- /src/includes/functions/math/numbers/abs.js: -------------------------------------------------------------------------------- 1 | abs(n) { 2 | return new BigNumber(n).abs() 3 | } 4 | -------------------------------------------------------------------------------- /src/includes/functions/math/numbers/c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/numbers/c.js -------------------------------------------------------------------------------- /src/includes/functions/math/numbers/ceil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/numbers/ceil.js -------------------------------------------------------------------------------- /src/includes/functions/math/numbers/e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/numbers/e.js -------------------------------------------------------------------------------- /src/includes/functions/math/numbers/floor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/numbers/floor.js -------------------------------------------------------------------------------- /src/includes/functions/math/numbers/goldenRatio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/numbers/goldenRatio.js -------------------------------------------------------------------------------- /src/includes/functions/math/numbers/isPrime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/numbers/isPrime.js -------------------------------------------------------------------------------- /src/includes/functions/math/numbers/leastFactor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/numbers/leastFactor.js -------------------------------------------------------------------------------- /src/includes/functions/math/numbers/n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/numbers/n.js -------------------------------------------------------------------------------- /src/includes/functions/math/numbers/nPrime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/numbers/nPrime.js -------------------------------------------------------------------------------- /src/includes/functions/math/numbers/pi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/numbers/pi.js -------------------------------------------------------------------------------- /src/includes/functions/math/numbers/primeFactors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/numbers/primeFactors.js -------------------------------------------------------------------------------- /src/includes/functions/math/numbers/primePi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/numbers/primePi.js -------------------------------------------------------------------------------- /src/includes/functions/math/numbers/round.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/numbers/round.js -------------------------------------------------------------------------------- /src/includes/functions/math/other/apply.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/other/apply.js -------------------------------------------------------------------------------- /src/includes/functions/math/other/max.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/other/max.js -------------------------------------------------------------------------------- /src/includes/functions/math/other/min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/other/min.js -------------------------------------------------------------------------------- /src/includes/functions/math/other/product.js: -------------------------------------------------------------------------------- 1 | product() { 2 | return [...arguments].reduce((a, b) => new BigNumber(a).times(b)) 3 | } 4 | -------------------------------------------------------------------------------- /src/includes/functions/math/other/sort.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/other/sort.js -------------------------------------------------------------------------------- /src/includes/functions/math/other/sum.js: -------------------------------------------------------------------------------- 1 | sum() { 2 | return [...arguments].reduce((a, b) => new BigNumber(a).plus(b)) 3 | } 4 | -------------------------------------------------------------------------------- /src/includes/functions/math/random/rand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/random/rand.js -------------------------------------------------------------------------------- /src/includes/functions/math/stats/average.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/stats/average.js -------------------------------------------------------------------------------- /src/includes/functions/math/stats/correlation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/stats/correlation.js -------------------------------------------------------------------------------- /src/includes/functions/math/stats/mean.js: -------------------------------------------------------------------------------- 1 | mean() { 2 | return this.average(...arguments) 3 | } 4 | -------------------------------------------------------------------------------- /src/includes/functions/math/stats/median.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/stats/median.js -------------------------------------------------------------------------------- /src/includes/functions/math/stats/quantile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/stats/quantile.js -------------------------------------------------------------------------------- /src/includes/functions/math/stats/regression.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/stats/regression.js -------------------------------------------------------------------------------- /src/includes/functions/math/stats/std.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/stats/std.js -------------------------------------------------------------------------------- /src/includes/functions/math/stats/variance.js: -------------------------------------------------------------------------------- 1 | variance() { 2 | return new BigNumber(this.std(...arguments)).pow(2) 3 | } 4 | -------------------------------------------------------------------------------- /src/includes/functions/math/trig/acos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/trig/acos.js -------------------------------------------------------------------------------- /src/includes/functions/math/trig/acosh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/trig/acosh.js -------------------------------------------------------------------------------- /src/includes/functions/math/trig/angle2Vec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/trig/angle2Vec.js -------------------------------------------------------------------------------- /src/includes/functions/math/trig/asin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/trig/asin.js -------------------------------------------------------------------------------- /src/includes/functions/math/trig/asinh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/trig/asinh.js -------------------------------------------------------------------------------- /src/includes/functions/math/trig/atan.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/trig/atan.js -------------------------------------------------------------------------------- /src/includes/functions/math/trig/atan2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/trig/atan2.js -------------------------------------------------------------------------------- /src/includes/functions/math/trig/atanh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/trig/atanh.js -------------------------------------------------------------------------------- /src/includes/functions/math/trig/cos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/trig/cos.js -------------------------------------------------------------------------------- /src/includes/functions/math/trig/cosh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/trig/cosh.js -------------------------------------------------------------------------------- /src/includes/functions/math/trig/deg2rad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/trig/deg2rad.js -------------------------------------------------------------------------------- /src/includes/functions/math/trig/drawCircularPoints.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/trig/drawCircularPoints.js -------------------------------------------------------------------------------- /src/includes/functions/math/trig/rad2deg.js: -------------------------------------------------------------------------------- 1 | rad2deg(x) { 2 | return new BigNumber(x).times(180).div(this.pi) 3 | } 4 | -------------------------------------------------------------------------------- /src/includes/functions/math/trig/sin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/trig/sin.js -------------------------------------------------------------------------------- /src/includes/functions/math/trig/sinh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/trig/sinh.js -------------------------------------------------------------------------------- /src/includes/functions/math/trig/tan.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/trig/tan.js -------------------------------------------------------------------------------- /src/includes/functions/math/trig/tanh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/trig/tanh.js -------------------------------------------------------------------------------- /src/includes/functions/math/units/convert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/units/convert.js -------------------------------------------------------------------------------- /src/includes/functions/math/units/src/area.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/units/src/area.js -------------------------------------------------------------------------------- /src/includes/functions/math/units/src/distance.js: -------------------------------------------------------------------------------- 1 | distance() { 2 | return this.length(...arguments) 3 | } 4 | -------------------------------------------------------------------------------- /src/includes/functions/math/units/src/length.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/units/src/length.js -------------------------------------------------------------------------------- /src/includes/functions/math/units/src/mass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/units/src/mass.js -------------------------------------------------------------------------------- /src/includes/functions/math/units/src/speed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/units/src/speed.js -------------------------------------------------------------------------------- /src/includes/functions/math/units/src/temperature.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/units/src/temperature.js -------------------------------------------------------------------------------- /src/includes/functions/math/units/src/time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/units/src/time.js -------------------------------------------------------------------------------- /src/includes/functions/math/units/src/volume.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/math/units/src/volume.js -------------------------------------------------------------------------------- /src/includes/functions/math/units/units.js: -------------------------------------------------------------------------------- 1 | units() { 2 | return this.convert(...arguments) 3 | } 4 | -------------------------------------------------------------------------------- /src/includes/functions/other/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/other/config.js -------------------------------------------------------------------------------- /src/includes/functions/other/convertToBase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/other/convertToBase.js -------------------------------------------------------------------------------- /src/includes/functions/other/fn.js: -------------------------------------------------------------------------------- 1 | get fn() { 2 | return this.prototype 3 | } 4 | -------------------------------------------------------------------------------- /src/includes/functions/other/toBase10.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/functions/other/toBase10.js -------------------------------------------------------------------------------- /src/includes/other/export.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arguiot/TheoremJS/HEAD/src/includes/other/export.js --------------------------------------------------------------------------------