遗传算法 Resources

Showing items tagged with "遗传算法"

Self-developed genetic algorithm PID controller with excellent simulation performance, now integrated into our company's advanced PID control systems. The implementation features population-based optimization with fitness evaluation, crossover, and mutation operations for parameter tuning.

MATLAB 217 views Tagged

Particle Swarm Optimization (PSO) is an evolutionary computation technique inspired by the social behavior of bird flocking during foraging. Similar to genetic algorithms, PSO is an iterative optimization tool that initializes a population of random solutions and searches for optimal values through successive iterations. Unlike genetic algorithms, PSO does not use crossover or mutation operations; instead, particles follow the best-performing particles in the solution space. Key implementation features include velocity and position updates using social and cognitive components, with parameters like inertia weight and acceleration coefficients controlling convergence behavior. PSO's advantages include simplicity of implementation, minimal parameter tuning, and effectiveness in various applications such as function optimization, neural network training, and fuzzy system control.

MATLAB 227 views Tagged