模拟退火 Resources

Showing items tagged with "模拟退火"

Simulated Annealing Program: This code implements feature extraction in pattern recognition using the simulated annealing method. Users can easily enhance the algorithm's performance through modifications such as temperature schedule adjustments, memory mechanism integration, or combining with genetic algorithms.

MATLAB 184 views Tagged

Implementation of hybrid simulated annealing with particle swarm optimization algorithm. Simply configure the required parameters to execute! For example: global popsize; % Population size %global popnum; % Population number global pop; % Population matrix %global c0; % Velocity inertia coefficient (random value between 0-1) global c1; % Individual best guidance coefficient global c2; % Global best guidance coefficient global gbest_x; % X-coordinate of global best solution global gbest_

MATLAB 205 views Tagged