文件名称:pm方程程序代码matlab-Awesome-MATLAB:既然有时间,为何不写一写好玩的MATLAB程序
文件大小:259KB
文件格式:ZIP
更新时间:2024-06-11 15:52:11
系统开源
pm方程程序代码matlab Awesome-MATLAB 既然有时间,为何不写一写好玩的MATLAB程序。正好练习下写markdown的水平。:grinning_face_with_big_eyes: 最好的学习方法就是试图去教会别人同样的事情 --导师费曼 内容 该项目包括以下几个内容 优化方法系列: 遗传算法 模拟退火 蚁群算法 机器学习方法: 主成分分析 神经网络 物理建模系列: 三体问题 元胞自动机 对应的知乎文档 MATLAB 主程序代码 % Run GA for gen = 1:generation_max % Selection [dad, mom, elite] = roulette_wheel_selection(population, a, b); % Cross-over operator new_generation = crossover(dad, mom, elite, pc); % Mutation operator new_generation = mutation(new_generation, pm); population = new_generation; % Fitness of current
【文件预览】:
Awesome-MATLAB-master
----Genetic Algorithm (GA)()
--------raw_fitness_score.m(921B)
--------GA_main.m(1KB)
--------roulette_wheel_selection2.m(1KB)
--------2ndgen.pdf(109KB)
--------initial.m(210B)
--------roulette_wheel_selection.m(1KB)
--------mutation.m(584B)
--------1st_gen.pdf(18KB)
--------20thgen.pdf(109KB)
--------crossover.m(674B)
--------fx.pdf(26KB)
----LICENSE(1KB)
----README.md(1KB)