nbdev-intgrt

a project that implements numeric integration

Install

pip install nbdev-intgrt

How to use

Here’s an example of using intgrt

import math

lbound = 0
rbound = 1
intvl = 0.0001
func = math.sqrt
result = intgrt(func,lbound,rbound,intvl)
print(result)
0.6666664591970162