优化算法 Resources

Showing items tagged with "优化算法"

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 244 views Tagged

The particle swarm optimization algorithm based on simulated annealing generates a new position through small-scale random perturbations and calculates fitness values for both old and new positions. Following the Metropolis acceptance criterion of simulated annealing, it accepts the new position as the optimal solution. Experimental results demonstrate that this method significantly improves optimization performance, accelerates convergence speed, and enhances inversion efficiency. Implementation typically involves combining PSO's velocity-position update mechanism with SA's probabilistic acceptance strategy through temperature-controlled probability functions.

MATLAB 235 views Tagged