Fractional Order Darwinian Particle Swarm Optimization

버전 1.0.0.0 (4.72 KB) 작성자: Micael Couceiro
MatLab function for FDPSO (Fractional Order Darwinian Particle Swarm Optimization)
다운로드 수: 1.2K
업데이트 날짜: 2011/11/13

라이선스 보기

fdpso - MatLab function for FDPSO
Fractional Order Darwinian Particle Swarm Optimization

Limited to optimization problems of nine variables but can easily be extended many more variables.

xbest = fdpso(func)
xbest - solution of the optimization problem. The number of columns depends on the input func. size(func,2)=number of xi variables
func - string containing a mathematic expression. Variables are defined as xi. For instance, func='2*x1+3*x2' means that it is an optimization problem of two variables.

[xbest,fit] = fdpso(func)
fit - returns the optimized value of func using the xbest solution.

[xbest,fit] = fdpso(func,xmin)
xmin - minimum value of xi. size(xmin,2)=number of xi variables. Default -100.

[xbest,fit] = fdpso(func,xmin,xmax)
xmax - maximum value of xi. size(xmax,2)=number of xi variables. Default 100.

[xbest,fit] = fdpso(func,xmin,xmax,type)
type - minimization 'min' or maximization 'max' of the problem. Default 'min'.

[xbest,fit] = fdpso(func,xmin,xmax,type,population)
population - number of the swarm population. Default 30.

[xbest,fit] = fdpso(func,xmin,xmax,type,population,iterations)
iterations - number of iterations. Default 300.

Example: xbest = fdpso('10+5*x1^2-0.8*x2',[-10 -20],[20 40],'min')

Micael S. Couceiro
v1.0
13/11/2011

Original PSO developed by:
Kennedy, J. and Eberhart, R. C. (1995).
"Particle swarm optimization".
Proceedings of the IEEE 1995 International Conference on Neural Networks, pp. 1942-1948.

Original DPSO developed by:
Tillett, J., Rao, T., Sahin, F., Rao, R. (2005).
"Darwinian particle swarm optimization"
Proceedings of the 2nd Indian International Conference on Artificial Intelligence (IICAI-05).

Extended Fractional-Order DPSO developed by:
Couceiro, M. S., Ferreira, N. M. F. and Machado, J. A. T. (2011).
"Fractional Order Darwinian Particle Swarm Optimization"
Proceedings of the Symposium on Fractional Signals and Systems (FSS’11).

인용 양식

Micael Couceiro (2024). Fractional Order Darwinian Particle Swarm Optimization (https://www.mathworks.com/matlabcentral/fileexchange/33758-fractional-order-darwinian-particle-swarm-optimization), MATLAB Central File Exchange. 검색됨 .

MATLAB 릴리스 호환 정보
개발 환경: R2011a
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Particle Swarm에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!
버전 게시됨 릴리스 정보
1.0.0.0