fmincon doesn't optimize in high frequency region

I am trying to find an optimal fit to my impedance spectroscopy measurement data using fmincon
options = optimset('MaxFunEvals',10e3,'MaxIter',10e3,'Algorithm',...
'interior-point','display','iter','TolCon',1e-6,'Tolfun',1e-6,...
'TolX',1e-10,'Hessian','bfgs');
I have the measurement of impedances (real, imaginary and the frequencies) for a large range of frequencies (10 mHz to 50kHz).I am trying to fit this data to a model. I don't want the optimization problem to run for all frequencies so i want to restrict the start stop to a mid/low frequency range
the message that fmincon gives back for that region where I have the problem?

Answers (0)

Asked:

on 20 Mar 2014

Edited:

on 20 Mar 2014

Community Treasure Hunt

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

Start Hunting!