1.遗传算法流程图
2.matlab代码2.1 main.m 主函数%% 遗传算法,不使用工具包,自行编写函数完成
clear;
close all;
clc;
%% 参数
% 计算x1 ^ 2 - 4 * x2 ^ 2 + x3 - x
2023-02-08