Failure in initial objective function evaluation. FMINUNC cannot continue.

41 次查看(过去 30 天)
I tried to evaluate this function but I am getting this error Failure in initial objective function evaluation.
FMINUNC cannot continue.
Please what is the best way to evaluate this function
f = x(2)^2*x(9)^2 + x(2)^2*x(9) + x(2)^3*x(9) - x(3)*x(5)*x(9)^2 + x(6)*x(8)*x(9)^2 + x(6)*x(8)*x(9)^3 + x(2)*x(6)*x(8)*x(9)^2;

采纳的回答

Star Strider
Star Strider 2019-11-19
Unless it is already in a function file, it needs to be an anonymous function:
f = @(x) x(2)^2*x(9)^2 + x(2)^2*x(9) + x(2)^3*x(9) - x(3)*x(5)*x(9)^2 + x(6)*x(8)*x(9)^2 + x(6)*x(8)*x(9)^3 + x(2)*x(6)*x(8)*x(9)^2;
If it is in a function file (and you have passed the function handle to fminunc correctly), the initial parameter estimates could be the problem. Please post those.
  9 个评论
Mohammed Ouallal
Mohammed Ouallal 2020-8-15
编辑:Bruno Luong 2020-8-15
It seems that you resolve the problem but did not show how! please be kind and share the complete solution.
Thank you for the understanding!
Star Strider
Star Strider 2020-8-15
Yes, I did!
Unless it is already in a function file, it needs to be an anonymous function

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Solver Outputs and Iterative Display 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by