多目标优化 Resources

Showing items tagged with "多目标优化"

Enhanced Multi-Objective Particle Swarm Optimization Algorithm effectively solves classic multi-objective optimization problems including ZDT, KUR, and SCH benchmark functions. The implementation requires only modifications to the f1 and f2 objective functions, featuring adaptive velocity updates and Pareto dominance mechanisms for efficient convergence.

MATLAB 223 views Tagged

This MATLAB-implemented genetic algorithm addresses multi-objective constrained optimization problems, featuring techniques like fitness scaling, constraint handling, and Pareto front evaluation. Based on a tutorial video found by searching "MATLAB Global Optimization Methods and Applications" on Tudou, this implementation demonstrates practical optimization approaches useful for engineering and research applications.

MATLAB 201 views Tagged

Multi-objective optimization involves two or more competing objectives under constraints, where optimizing one objective often sacrifices others, resulting in multiple non-dominated optimal solutions known as Pareto optimal solutions. The Fast Nondominated Sorting Genetic Algorithm II (NSGA-II) with elitist strategy is a widely adopted multi-objective algorithm. This case study explains MATLAB's enhanced NSGA-II implementation and demonstrates its practical applications with code examples and algorithmic analysis.

MATLAB 206 views Tagged

NSGA-II is one of the most popular multi-objective genetic algorithms that reduces the complexity of non-dominated sorting genetic algorithms. It features fast execution speed, excellent solution set convergence, and serves as a benchmark for evaluating other multi-objective optimization algorithms.

MATLAB 221 views Tagged