mathjs-simple-integral icon indicating copy to clipboard operation
mathjs-simple-integral copied to clipboard

Extends Math.js to be able to compute simple integrals.

Results 3 mathjs-simple-integral issues
Sort by recently updated
recently updated
newest added
trafficstars

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...