智能优化算法 Resources

Showing items tagged with "智能优化算法"

This MATLAB program solves the 0/1 knapsack problem using genetic algorithm optimization. The algorithm selects items from n available objects to pack into a knapsack with capacity c, where each item i has weight w_i and value p_i. The solution ensures the total weight doesn't exceed capacity while maximizing total value. The implementation includes key genetic operators: crossover, mutation, and selection with fitness evaluation.

MATLAB 221 views Tagged

Intelligent Optimization Algorithm: Particle Swarm Optimization (PSO) implemented for neural network optimization. Features configurations with no hidden layer, one hidden layer, and two hidden layers. Execute DemoTrainPSO.m to run the demonstration. The program includes swarm initialization, velocity updates, and fitness evaluation using neural network error metrics. Code origin: Brian Birge NCSU.

MATLAB 201 views Tagged