Metadata-Version: 2.1
Name: nbdev-intgrt
Version: 0.0.1
Summary: a project that implements numeric integration
Home-page: https://github.com/rbagdazian/nbdev-intgrt
Author: rbagdazian
Author-email: rbagdazian@gmail.com
License: Apache Software License 2.0
Keywords: nbdev jupyter notebook python
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: License :: OSI Approved :: Apache Software License
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Provides-Extra: dev
License-File: LICENSE

nbdev-intgrt
================

<!-- WARNING: THIS FILE WAS AUTOGENERATED! DO NOT EDIT! -->

## Install

``` sh
pip install nbdev_intgrt
```

## How to use

Here’s an example of using
[`intgrt`](https://rbagdazian.github.io/nbdev-intgrt/intgrt.html#intgrt)

``` python
import math

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

    0.6666664591970162
