进化计算 Resources

Showing items tagged with "进化计算"

Particle Swarm Optimization (PSO) is an evolutionary computation technique invented by Dr. Eberhart and Dr. Kennedy, inspired by bird flock predatory behavior. Similar to genetic algorithms, PSO is an iterative optimization tool that initializes with random solutions and searches for optimal values through iterations. Unlike genetic algorithms, PSO eliminates crossover and mutation operations, instead having particles follow the optimal particle in solution space. Future chapters will detail implementation steps and comparisons with genetic algorithms. PSO's advantages include simplicity of implementation with minimal parameter tuning, currently applied extensively in function optimization and neural network training. Code implementations typically involve velocity updates and position adjustments using personal and global best values.

MATLAB 246 views Tagged

The Shuffled Frog Leaping Algorithm (SFLA) is a novel optimization technique in evolutionary computing, originally introduced by Eusuff and Lansey in 2003 to address combinatorial optimization problems. This population-based metaheuristic mimics frog behavior with memetic evolution and cooperative search strategies.

MATLAB 245 views Tagged

Particle Swarm Optimization (PSO) is an evolutionary computation technique co-invented by Dr. Eberhart and Dr. Kennedy. Inspired by studies of bird flock predation behavior, PSO is similar to Genetic Algorithms as an iteration-based optimization tool. Implementation typically involves initializing particle positions/velocities, updating particle velocities based on personal and global best positions using inertia weights, and iteratively converging toward optimal solutions through social learning mechanisms.

MATLAB 235 views Tagged