A tiny Python package to generate newton basins images.
pip install nb-py
pip install git+https://github.com/gmagno/nb-py.git
or
git clone [email protected]:gmagno/nb-py.git
cd nb-py/
make install
Just run:
import matplotlib as mpl # don't forget to `pip install matplotlib` first
import matplotlib.pyplot as plt
import nb_py
hsv = nb_py.compute(
imw=32, imh=32, # for more details, run: help(nb_py.compute)
)
rgb = mpl.colors.hsv_to_rgb(hsv)
plt.figure()
plt.imshow(rgb)
plt.show()
This project is licensed under the MIT License - see the LICENSE.md file for details