| python Programming Glossary: maximaThese spectrum bands used to be judged by eye, how to do it programmatically? http://stackoverflow.com/questions/10764569/these-spectrum-bands-used-to-be-judged-by-eye-how-to-do-it-programmatically  point you could use a simple algorithm that finds a local maxima closest to this point. Your fitting code may be doing that already.. np.argmin np.abs ts start_point # Find the local maxima in our data by looking for a sign change in # the first difference.. 
 Finding local maxima/minima with Numpy in a 1D numpy array http://stackoverflow.com/questions/4624970/finding-local-maxima-minima-with-numpy-in-a-1d-numpy-array  local maxima minima with Numpy in a 1D numpy array  Can you suggest a module.. a module function from numpy scipy that can find local maxima minima in a 1D numpy array Obviously the simplest approach ever.. 
 Get coordinates of local maxima in 2D array above certain value http://stackoverflow.com/questions/9111711/get-coordinates-of-local-maxima-in-2d-array-above-certain-value  coordinates of local maxima in 2D array above certain value  from PIL import Image import.. the brightest in their neighborhood here 10 10 pixels maxima data maximum_filter data 10 # How can I get only maxima outstanding.. maxima data maximum_filter data 10 # How can I get only maxima outstanding the background a certain value let's say 500 I'm.. 
 scipy.optimize.leastsq with bound constraints http://stackoverflow.com/questions/9878558/scipy-optimize-leastsq-with-bound-constraints  but including bounds and constraints e.g. minima and maxima for the parameters to be optimised . At the moment I am using.. 
 |