I appreciate the reply but maybe I wasn’t clear enough.
I can call functions such as Math.random() or Math.sinh(). However, the built-in “Math” library is very limited (https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math). I need substantially more advanced functionality such as advanced linear algebra functions, matrix manipulation, statistics, etc. I REALLY don’t want to rewrite all the functions I need. There are a couple good open-source libraries out there that I would use if I were building a website as I could easily import them. However, I can’t seem to get import to work for these .js libraries. I can import my own .js libraries but these external ones are built a bit differently and don’t import normally, even if I download the .js file and place it in the same folder as my own .js files.
I’d love to be able to use https://unpkg.com/mathjs@5.7.0/dist/math.js if at all possible, I just need to know how.
Thank you,
Eric