Metadata-Version: 2.1
Name: Pyntb
Version: 2023.0.0
Summary: A toolbox to factorize some code utilities across various projects.
Author-email: Eurobios Mews Labs <ecieren@eurobios.com>
Project-URL: Homepage, https://github.com/eurobios-mews-labs/pyntb
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy
Requires-Dist: scipy
Requires-Dist: pylint

# Eurobios-Mews-Labs Toolbox

A toolbox to factorize some code utilities across various projects.

## Install

To install the package, type ```python3 -m pip install pyntb``` in a terminal.

## Content

- `optimize` 
  - a bisection algorithm that work on numpy array inputs
  - a copy of `scipy.optimize.fixed_point` that deals with nan values
  - a 2D, quasi-newton algorithm that works with numpy array inputs
- `polynomial`
  - find roots of 2nd and 3rd order polymonials with numpy array inputs 

## Examples

See `examples` directory for more details.
