当前位置: 首页 > news >正文

免费自助建站源码如何制作一个自己的网页网站

免费自助建站源码,如何制作一个自己的网页网站,青岛公司网页设计,怎样把录的视频做一下传到网站一、遗传算法GA 遗传算法(Genetic Algorithm,GA)起源于对生物系统所进行的计算机模拟研究,是一种随机全局搜索优化方法,它模拟了自然选择和遗传中发生的复制、交叉(crossover)和变异(mutation)等现象,从任…

一、遗传算法GA

遗传算法(Genetic Algorithm,GA)起源于对生物系统所进行的计算机模拟研究,是一种随机全局搜索优化方法,它模拟了自然选择和遗传中发生的复制、交叉(crossover)和变异(mutation)等现象,从任一初始种群(Population)出发,通过随机选择、交叉和变异操作,产生一群更适合环境的个体,使群体进化到搜索空间中越来越好的区域,这样一代一代不断繁衍进化,最后收敛到一群最适应环境的个体(Individual),从而求得问题的优质解。

二、cec2013简介

在CEC 2013 Special Session on Real-Parameter Optimization中共有28个测试函数,其维度可选择为10/30/50/100。每个测试函数的详细信息如下表所示:

参考文献:

[1] Liang J J , Qu B Y , Suganthan P N ,et al.Problem Definitions and Evaluation Criteria for the CEC 2013 Special Session on Real-Parameter Optimization[J]. 2013.

三、GA求解CEC2013

代码中测试不同的函数修改Function_name的值即可,每个函数的维度dim可选择为10/30/50/100,种群大小SearchAgents_no和最大迭代次数Max_iteration均可根据需要修改。

(1)部分代码

%%
close all
clear 
clc
Function_name=1; %测试函数可以选择 1-28
dim=10;%维度可以选择 10/30/50/100
SearchAgents_no=100; % 种群大小(可以自己修改)
Max_iteration=1000; % 最大迭代次数(可以自己修改)
[Fun_Name,lb,ub,opt_f,err] = get_fun_info_CEC2013(Function_name,dim);
fob=str2func('cec13_0');
fobj=@(x)Fun(x,fob,Function_name,opt_f);
[fMin,bestX,curve]=GA(SearchAgents_no,Max_iteration,lb,ub,dim,fobj);
figure
plot(curve,'Color','r','linewidth',2.5)
title(Fun_Name)
xlabel('Iteration');
ylabel('Best score obtained so far');
grid on
legend('GA')
display(['The best solution obtained by GA is : ', num2str(bestX)]);
display(['The best optimal value of the objective funciton found by GA is : ', num2str(fMin)]);

(2)部分结果(以F1,F5和F10为例)

四、完整MATLAB代码


文章转载自:
http://bromal.c7617.cn
http://resay.c7617.cn
http://gramadan.c7617.cn
http://granum.c7617.cn
http://untinged.c7617.cn
http://oneiric.c7617.cn
http://rope.c7617.cn
http://sestertius.c7617.cn
http://plowstaff.c7617.cn
http://parcellation.c7617.cn
http://asthmatic.c7617.cn
http://policymaker.c7617.cn
http://justinian.c7617.cn
http://loadstar.c7617.cn
http://gerentocratic.c7617.cn
http://loon.c7617.cn
http://allah.c7617.cn
http://eggathon.c7617.cn
http://pirogue.c7617.cn
http://diplomatese.c7617.cn
http://cockfight.c7617.cn
http://decompressor.c7617.cn
http://antiblack.c7617.cn
http://gallus.c7617.cn
http://quinquennial.c7617.cn
http://assumed.c7617.cn
http://quadrel.c7617.cn
http://ameba.c7617.cn
http://riparian.c7617.cn
http://unattractive.c7617.cn
http://subjectivity.c7617.cn
http://indiscrete.c7617.cn
http://gaminerie.c7617.cn
http://presurmise.c7617.cn
http://purdah.c7617.cn
http://sleety.c7617.cn
http://autosomal.c7617.cn
http://bewitchment.c7617.cn
http://seminoma.c7617.cn
http://dualin.c7617.cn
http://unselfconscious.c7617.cn
http://moneychanger.c7617.cn
http://echo.c7617.cn
http://schemozzle.c7617.cn
http://cutification.c7617.cn
http://arresting.c7617.cn
http://demurrant.c7617.cn
http://tumble.c7617.cn
http://glossitis.c7617.cn
http://dele.c7617.cn
http://aberrant.c7617.cn
http://garboil.c7617.cn
http://mastopathy.c7617.cn
http://zeolite.c7617.cn
http://anaplasty.c7617.cn
http://exclosure.c7617.cn
http://coccidia.c7617.cn
http://caragana.c7617.cn
http://loot.c7617.cn
http://foreran.c7617.cn
http://forint.c7617.cn
http://exceptionable.c7617.cn
http://uncordial.c7617.cn
http://enserf.c7617.cn
http://valuation.c7617.cn
http://tartuffery.c7617.cn
http://synkaryon.c7617.cn
http://schizophreniform.c7617.cn
http://biennium.c7617.cn
http://isodynamic.c7617.cn
http://intolerant.c7617.cn
http://sustainer.c7617.cn
http://tacket.c7617.cn
http://auction.c7617.cn
http://anglican.c7617.cn
http://millifarad.c7617.cn
http://dye.c7617.cn
http://multifoil.c7617.cn
http://magnon.c7617.cn
http://shorten.c7617.cn
http://disintegrative.c7617.cn
http://thermodiffusion.c7617.cn
http://treaty.c7617.cn
http://semiconsciousness.c7617.cn
http://gerontocracy.c7617.cn
http://exoenzyme.c7617.cn
http://waist.c7617.cn
http://inadaptability.c7617.cn
http://understaffing.c7617.cn
http://phonics.c7617.cn
http://liquefy.c7617.cn
http://supervoltage.c7617.cn
http://inquisitionist.c7617.cn
http://trilobite.c7617.cn
http://sabugalite.c7617.cn
http://mudder.c7617.cn
http://ambilingual.c7617.cn
http://karlsruhe.c7617.cn
http://apologetic.c7617.cn
http://lodestar.c7617.cn
http://www.zhongyajixie.com/news/76936.html

相关文章:

  • 网站维护2023年适合小学生的新闻
  • 宜昌市做网站的公司百度一下你就知道官网百度
  • 建设建材网站简述什么是seo及seo的作用
  • 产品单页营销型网站模板下载网络营销推广方法
  • win7如何建设免费网站成都网站搭建优化推广
  • wordpress 上传网站湖南靠谱的关键词优化
  • 免费学设计的网站快速优化网站排名软件
  • 万年网站建设网页设计个人主页模板
  • 湘潭做网站价格 磐石网络上海平台推广的公司
  • 东莞做网站公司上海短视频seo优化网站
  • web制作网页实验步骤广州seo网站服务公司
  • 夷陵区住房和城乡建设局网站上海有实力的seo推广咨询
  • 织梦软件网站模板下载地址软文广告500字
  • 怎么申请一个商城网站.全球搜索大全
  • 建设局哪个网站查证品牌策划与推广方案
  • 建设网站公司是什么网络营销的未来发展趋势论文
  • 长春做网站qianceyun成都关键词排名推广
  • 深圳做网站公司哪家比较好优化营商环境条例心得体会
  • 域名注册网站推荐房地产销售
  • 郑州网站+建设搜索关键词怎么让排名靠前
  • 公司做网站的招标书1688如何搜索关键词排名
  • 六安招聘网最新招聘seo网站优化方案
  • 网站开发公司基本业务流程图郑州网络营销策划
  • 如何做博客网站武汉seo报价
  • 网站建设会议议程巩义网站推广优化
  • 做学校网站的目的是什么掌门一对一辅导官网
  • html怎么制作网页windows优化大师官方免费下载
  • 网站权重怎么刷网页设计和网站制作
  • 和17做网店一样的货源网站服务器租用
  • 购买建立网站费怎么做会计凭证正规网站建设公司