Problem 45948. Function minimization - beat fminbnd!
Matlab's fminbnd function finds a minimizer of a function within an interval. If often gets stuck in local minima.
Can you do better than fminbnd, for a single variable?
You are given a function handler fun (one scalar input, one scalar output) and a the search bounds xmin and xmax. Return a minimizer xopt between xmin and xmax such that fun(xopt) < fminbnd(fun,xmin,xmax)
Check Problem 45951 for the unbounded version (harder)!
https://www.mathworks.com/matlabcentral/cody/problems/45951-function-minimization-beat-fminsearch
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers7
Suggested Problems
- 
         given 3 sides, find area of this triangle 811 Solvers 
- 
         Implement a bubble sort technique and output the number of swaps required 350 Solvers 
- 
         Create Volcano (or Atoll) martix. It is an extension of Bullseye matrix problem. 152 Solvers 
- 
         
         30 Solvers 
- 
         
         228 Solvers 
More from this Author10
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!