이 제출물을 팔로우합니다
- 팔로우하는 게시물 피드에서 업데이트를 확인할 수 있습니다
- 정보 수신 기본 설정에 따라 이메일을 받을 수 있습니다
This is a single M-file that implements a Nelder-Mead simplex minimizer. It makes use of MATLAB's persistent variables to create a "state machine" implementation. This allows entire minimization programs to be written as MATLAB scripts, as it does not require a function to be defined and passed to the minimization routine. In my opinion, this makes the fitting of functions to data much more fun and educational!
The traditional approach to optimization is to pass a function to an optimizer, which then takes control of the program until it is done. For example, the function 'fun' is minimized by a call to
x = fminsearch(fun,x0,options).
The disadvantage of this approach is that 'fun' must be defined in an M-file, and inserting code to observe the progress of the minimization is made difficult by the different scopes of the calling program and 'fun'.
Simplex.m does not take control of the program, but instead provides a new vector of parameters to "try" with each iteration. Here is a simple example, that minimizes the sixth power of the difference between two vectors:
% Example of use: minimize (p-q).^6
p=[2 2 1.5 2]'; % inital guess
q=[1 1 1 1]'; % true values
p=Simplex('init',p);
for i=1:200
y=sum((p-q).^6); % Evaluation of the function
p=Simplex(y); % Simplex provides a new vector p
if ~mod(i, 10) % every 10 iterations print out the fitted value
p'
end;
end;
p=Simplex('centroid'); % get the final best value.
The first call to Simplex is an initialization, where the starting guess of the parameter vector is supplied. The function sum(p-q).^6 is evaluated in-line, and its result is given to Simplex; in turn, a new parameter vector p is returned. The progress of the minimization is easily monitored because the function evaluation remains in the scope of the main program.
인용 양식
Fred Sigworth (2026). State-machine simplex minimizer (https://kr.mathworks.com/matlabcentral/fileexchange/4317-state-machine-simplex-minimizer), MATLAB Central File Exchange. 검색 날짜: .
