-
Notifications
You must be signed in to change notification settings - Fork 227
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Typo on Optim.simplexer() function #1064
Comments
Oh, the S. Good catch. Thanks |
Wait, looking at the code this is actually correct and I havn't touched that file for four years. I wonder if the docs are not generated as they should on new tags. |
See this #819 |
So it's correct on dev docs now after it built, but it looks like I have some cleaning up to do as the old docs code used a very old version of documenter https://julianlsolvers.github.io/Optim.jl/dev/algo/nelder_mead/ |
docs are now running |
Hi
There is a small typo on the function you provided to implement the initial simplex as in Matlab's
fminsearch
in the Nelder-Mead algorithm, in section "Specifying the initial simplex".You defined the function:
The typo is on the first argument of
Optim.simplexer()
: the first argument should beS::MatlabSimplexer
.The text was updated successfully, but these errors were encountered: