粒子群算法 Resources

Showing items tagged with "粒子群算法"

MATLAB implementations of Genetic Algorithm (GA), Particle Swarm Optimization (PSO), and Ant Colony Algorithm (AS) developed during intelligent computing methods experiments. These codes include GA for Minimum Spanning Tree using Prufer encoding, PSO for unconstrained optimization problems, and AS for Traveling Salesman Problem (TSP). Seeking community improvements and experience exchange to enhance these algorithmic implementations.

MATLAB 172 views Tagged

Comprehensive source code implementations of various PSO algorithms including Standard PSO, Hybrid PSO, and Improved PSO variants. Features detailed code comments and practical examples, making it an ideal resource for PSO beginners to understand algorithm implementation and application scenarios.

MATLAB 191 views Tagged

Particle Swarm Optimization (PSO) originated from Complex Adaptive System (CAS) theory, which was formally proposed in 1994. In CAS, members are called agents - for example, in studying bird flock systems, each bird represents an agent. Agents possess adaptability, enabling them to interact with their environment and other agents, while "learning" or "accumulating experience" through these interactions to modify their structure and behavior. The evolution of the entire system includes the emergence of new levels (birth of birds), differentiation and diversity (birds splitting into smaller subgroups), and new themes (discovery of new food sources during foraging). PSO mimics this behavior through mathematical models where particles (agents) iteratively update their positions based on personal and group best solutions.

MATLAB 220 views Tagged