Woodgate Algorithm #171
Replies: 4 comments 11 replies
-
Doubt 1We know that |
Beta Was this translation helpful? Give feedback.
-
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] |
Beta Was this translation helpful? Give feedback.
-
Doubt 3The error that we get once the algorithm convergences seems to be dependent on the initial choice of |
Beta Was this translation helpful? Give feedback.
-
In order to render the equations properly, one will need https://github.com/nschloe/xhub. |
Beta Was this translation helpful? Give feedback.
-
Hey, this is wrt #170. I had a few doubts. @FanwangM @Ali-Tehrani
Beta Was this translation helpful? Give feedback.
All reactions