NumbaMinpack
NumbaMinpack copied to clipboard
Python wrapper of Minpack (root finding) which can be called from within numba functions.
I use this function for do a fitting in numba ``` from NumbaMinpack import minpack_sig, lmdif import numpy as np import numba as nb shape_c_array = 1000 @nb.jit def fit_gaussian_custom(X,...
Hi @Nicholaswogan, I am interested in using your NumbaMinPack implementation for finding the roots of a non-linear problem. At the moment I am using scipy's ```root``` function for doing this...
Would be great to add an argument that enables direct computation of the Jacobian. The argument could take an njit function that returns an array with the correct size.
Hi First off - thanks for making this and making it public - it's been a really useful resource for a project I'm working on! I have been working with...
Hi @Nicholaswogan. Thanks for the great tools! I was looking at this stack overflow discussion where you [posted an example](https://stackoverflow.com/a/68525319/15231428) of using NumbaMinpack for curve fitting. I was wondering if...
Hi, I tried to install your wonderful package but failed several times. I guess I didn't install correctly the fortran compiler but my issue here is that I have no...