MATLAB: Can one set up initial values for fminbnd

MATLAB

Can one set intial values for iteration for fminbnd? I do not find an option on the documenation:

Best Answer

No, you cannot. However, you might get a comparable effect if you use fminsearch instead, setting your objective to Inf outside the desired interval.
Or, you could use fminsearchbnd from the File Exchange,