我试图按照http://www.mathworks.com/help/matlab/ref/fminsearch.html中的示例 更改香蕉函数:
enter fun = @(x) x^2;
[x, fval] = fminsearch(fun, 1)
我希望有一个 x = 0 的值,但得到 "Exiting: Maximum number of function evaluations has been exceeded" 。
有没有办法获得正确的价值?
我试图按照http://www.mathworks.com/help/matlab/ref/fminsearch.html中的示例 更改香蕉函数:
enter fun = @(x) x^2;
[x, fval] = fminsearch(fun, 1)
我希望有一个 x = 0 的值,但得到 "Exiting: Maximum number of function evaluations has been exceeded" 。
有没有办法获得正确的价值?
这将帮助您并回答您的问题: http: //www.mathworks.com/matlabcentral/newsreader/view_thread/152034