mathjs-simple-integral
mathjs-simple-integral copied to clipboard
Extends Math.js to be able to compute simple integrals.
Why not make this extension a part of mathjs(since integrals are really important/used nowadays)?
example usage: ``` const { create, all } = require('mathjs'); const math = create(all); const integral = require('./integral.js'); math.import( [[integral]] ); //simulates importing the npm package, which nests it [[]]...
Hello! I'm very new to mathjs, but this looks like an amazing library I need to compute and use an integral for one of my projects, but it looks to...