Woodgate Algorithm #171
Replies: 4 comments 11 replies
Doubt 1We know that |
Doubt 2To solve the following minimization problem, I used Currently, I have put the bounds as follows and I think def find_minima(E, DE):
def func(w):
return f(E - w * DE)
# Optimize the function using scipy.optimize.minimize
# with respect to w > 0.
w_min = minimize(func, 1, bounds=((0, None),))
return w_min.x[0] |
Doubt 3The error that we get once the algorithm convergences seems to be dependent on the initial choice of |
|
In order to render the equations properly, one will need https://github.com/nschloe/xhub. |


Uh oh!
There was an error while loading. Please reload this page.
Hey, this is wrt #170. I had a few doubts. @FanwangM @Ali-Tehrani
All reactions