优化算法 Resources

Showing items tagged with "优化算法"

Implementation of neural network optimization using Ant Colony Algorithm. Features ANT_object_func_ant as the neural network-based objective function and Ant_ant_new as the main optimization program with swarm intelligence implementation.

MATLAB 281 views Tagged

The Bat Algorithm is a meta-heuristic optimization algorithm developed by Xin-She Yang in 2010. This algorithm is inspired by the echolocation behavior of microbats, which utilize varying emission rates and loudness of pulses for navigation and prey detection.

MATLAB 226 views Tagged

The PSO Particle Swarm Optimization Toolbox provides an implementation of Particle Swarm Optimization (PSO), a modern evolutionary algorithm (EA) that mimics social behavior to solve optimization problems. Unlike genetic algorithms, PSO eliminates crossover and mutation operations by following the best-known solutions, enabling efficient global optimization through swarm intelligence with simple parameter tuning and rapid convergence.

MATLAB 238 views Tagged

A MATLAB program implementing Dijkstra's algorithm for initial path optimization in route planning, providing a suboptimal solution that can be further refined using various optimization algorithms. The implementation includes node distance calculations, priority queue management, and path reconstruction methods.

MATLAB 253 views Tagged