You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It appears that scipy.optimize.fmin doesn't recognize the initial_simplex argument. This optional input argument is documented here.
Specifically, I call the fmin function as: ## py import scipy.optimize scipy.optimize.fmin(lambda x: x**2, 0.0, initial_simplex=[[0.0], [1.0]])
on https://alpha.iodide.io/tryit
I am a bit surprised that something this specific is not implemented while nearly everything else runs perfectly fine with pyodine. Am I missing something? If not, does anybody know where the issue lies?
Thanks,
Tom
The text was updated successfully, but these errors were encountered:
Hi all,
It appears that
scipy.optimize.fmin
doesn't recognize the initial_simplex argument. This optional input argument is documented here.Specifically, I call the fmin function as:
## py
import scipy.optimize
scipy.optimize.fmin(lambda x: x**2, 0.0, initial_simplex=[[0.0], [1.0]])
on https://alpha.iodide.io/tryit
I am a bit surprised that something this specific is not implemented while nearly everything else runs perfectly fine with pyodine. Am I missing something? If not, does anybody know where the issue lies?
Thanks,
Tom
The text was updated successfully, but these errors were encountered: