Skip to content

Tag: scipy

SciPy Minimize doesn’t pass all guesses on?

I am trying to minimize a function of two variables using SciPy. The function itself is a chain of multiple lambda functions (makes it complicated but unfortunately it is the easiest way to write the expressions I need). However, when using SciPy’s minimize routine, I get the error “TypeError: () …

How to make dotted line in a binary array

how to create the dotted line in the below NumPy array bh=make_figure(b,’gh’) requirement: how to convert element 1 into 0 with the step of two expected outputs is like I tried with a brute force algorithm, but I am not able to find the solution output array looks like for visual representation li…

Optimization problem for S-I-S model using python

I have a susceptible-infectious-susceptible model, to which I’ve written the following python code, And I’m solving it using the following code, This part is fine. I’m having trouble finding the double derivative and optimizing it for the value of the beta parameter. The problem is that the …

fit multiple parametric curves with scipy python

I am trying to fit two curve into one equation. y = (a * exp(b * (T^-1)))cexp(d100)(x^0.5) for y1, T =10, for y2, T =25. how do a get a,b,c,d I have a code that simplified to fit one data. I don’t know how to do both. I find a similar question with solution but I can’t follow.. fit multiple

How to fill in missing center of a 2d gaussian

I have a 2d gaussian whose center has been destroyed by pixel saturation. I need the center to be filled in because a poorly filled in center will confuse a neural network I’m trying to train. See below: The scattered nan values I can handle fairly easily, but the large cluster in the gaussian’s c…