MATLAB: Search the minimum of function by sse

how can i optimize my function by sse?

ui=[1 2 3 4 5 6]; %%% puissance
sse =@(x)sum((ui - xi./(k.*yi.*zi)).^ 2); %function similar to yours
fminsearch(sse,0) %find the xi,yi,zi

Best Answer

I think that the documentation on Minimizing Functions of Several Variables will help.
Alan Weiss
MATLAB mathematical toolbox documentation
Related Question