fminsearch does not minimize my function

3 views (last 30 days)
Dear all,
I am using fminsearch to minimize a function with 7 parameters..the function is very long. Fminsearch doesnt converge, each time it iterates the value of the function doesnt change (it doesnt minimize). Any ideas where the problem is?
Thanks a lot
Saad

Accepted Answer

John D'Errico
John D'Errico on 9 Feb 2023
Probable user error. Various possibilities exist, the most common are:
  1. Your function is improperly coded, so it does not do what you think it does. Yeah, like nobody ever does that.
  2. Your function is not smooth, and is possibly locally constant. Too often we see cases where something was done to make the objective function discrete in some way. Perhaps internal rounding is done somehow.
  3. Your starting values are such that the start point is in a region where the function is numically constant, to within the tolerances provided.

More Answers (0)

Tags

Community Treasure Hunt

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

Start Hunting!