1 Star 5 Fork 1

QianWei_1129/免疫算法选址

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
popinit.m 319 Bytes
一键复制 编辑 原始数据 按行查看 历史
function pop = popinit(n,length)
%种群初始化函数(记忆库库为空,全部随机产生)
% n input 种群数量
% length input 抗体长度
% pop output 初始种群
for i=1:n
flag=0;
while flag==0
[a,b]=sort(rand(1,31));
pop(i,:)=b(1:length);
flag=test(pop(i,:));
end
end
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Matlab
1
https://gitee.com/qianwei-1129/immune-algorithm-location.git
git@gitee.com:qianwei-1129/immune-algorithm-location.git
qianwei-1129
immune-algorithm-location
免疫算法选址
master

搜索帮助