登录
首页 » matlab » 人工免疫多目标程序

人工免疫多目标程序

于 2018-05-15 发布 文件大小:6KB
0 183
下载积分: 1 下载次数: 10

代码说明:

  一个人工免疫的多目标程序,可以绘制相应的pareto前沿(A multi-objective program of artificial immune system can draw corresponding Pareto frontiers)

文件列表:

程序\AIA_MultObj.m, 3777 , 2017-02-27
程序\code\code.m, 203 , 2017-02-12
程序\code\CreateGrids.m, 399 , 2017-02-26
程序\code\cross_AIA.m, 537 , 2017-02-12
程序\code\Domination.m, 154 , 2017-02-26
程序\code\FindGridIndex.m, 389 , 2017-02-27
程序\code\fun.m, 181 , 2017-02-26
程序\code\JudgePopDomination.m, 408 , 2017-02-26
程序\code\mutation_AIA.m, 435 , 2017-02-12
程序\code\Plotfitness.m, 712 , 2017-02-27
程序\code\RandWheelSelection.m, 116 , 2017-02-26
程序\code\Selectzbest.m, 811 , 2017-02-26
程序\code\select_AIA.m, 232 , 2017-02-12
程序\code\test.m, 217 , 2017-02-12
程序\code\uniqueRep.m, 442 , 2017-02-26
程序\code, 0 , 2017-02-27
程序, 0 , 2017-02-27

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • vcFtp
    学习网络编程的初学者必看的.(Learning Network Programming Watchable the beginners.)
    2004-12-06 14:00:15下载
    积分:1
  • libuv
    网络库libuv源码 包含该书全部代码 风格良好 很具有参考性(Network Library libuv good book that contains all of the source code is a reference of style)
    2014-01-27 01:58:51下载
    积分:1
  • 新建文件夹
    采用改进的Euler方法求解数值解,给出了仿真源代码。(The improved Euler method is used to solve the numerical solution, and the simulation source code is given.)
    2020-06-23 20:00:01下载
    积分:1
  • C# Winform围棋(可对战)
    程序使用VS2015,.NET4.5,.NET 2.0以上都可以编译使用,无第三方组件,可生成32、64位。Socket网络传输,可以对战、旁观,围棋走棋规则基本全面,可直接对杀。围棋规则算法写代码太麻烦,直接参考了GreatVerveGo(是单机的)算法,感谢作者。程序包含客户端和服务端2各部分。图片文件在gooinDebugRes里面1、先启动服务端 goServer.exe服务端:地址为IPAddress[] addrIP = Dns.GetHostAddresses("192.168.0.104"); //ip地址端口51888,根据你的需要进行修改;进入服务端后点击“开始监听”。服务端定义://连接的用户System.Collections.Generic.List userList = new List();//监听端口private int port = 51888;//走棋判断int[] GameRoom = new int[255]; //房间号int[] GameUser = new int[255]; //房间人数;int[] GameStat = new int[255];  //走棋状态:1-等待、2-准备、3-开始、4-旁观int[] GameReday = new int[255]; //走棋准备状态//旁观 获得走棋信息string lookuser = "";2、打开客户端 goo.exe这里直接设置了进入到房间“0”,进入后显示“等待其他人加入”,先进房的执黑旗,按钮不可用;当有第2个人进入后,执白棋,按钮显示“准备”;双方都点击“准备”后,进入对局;后面再有人进入为旁观者,能看见双方对局信息。房间都是“0”。地址:client = new TcpClient("192.168.0.104", 51888); //定义服务器端ip地址和端口,与服务器端定义要一致根据你的需要进行修改;客户端定义:private int[,] Qpan = new int[24, 24]; //棋盘数组private string SendLook = null; //发送给旁观者的对局信息private const int Qz_Null = 0; //没有棋子private const int Qz_Black = 1; //黑子private const int Qz_White = 2; //白子private const int Max_Qpan = 23; //棋盘最大路数private int[,] TmpA_Qpan = new int[24, 24]; //临时存储棋盘private int[,] TmpB_Qpan = new int[24, 24];//临时存储棋盘private int[,] Tmp_Qpan = new int[24, 24];//临时存储棋盘private int Current_Go = 1; //当前棋子颜色private int Qpan_Count = 19; //当前棋盘路数private int Rame; //气数private int Die_Num; //死子数private bool _Attack = false; //是否打劫private int Attack_X = 0; //打劫位置private int Attack_Y = 0; //打劫位置private Panel g_Hei; //鼠标移动 黑块private Panel g_Bai; //鼠标移动 白块private Panel Fit_Hei; //最后落子标记 黑private Panel Fit_Bai; //最后落子标记 白private Panel[,] QzH = new Panel[20,20]; //黑棋子private Panel[,] QzB = new Panel[20,20]; //白棋子int LastFitX = 0; //给旁观最后落子位置int LastFitY = 0; //给旁观最后落子位置int LastHB = 0; //给旁观最后落子颜色Point Mouseoff; //鼠标位置bool go_play = false; //能否走棋int Select_Qzi = 0; //是黑还是白,1-黑,2-白int ReceiveHB =1; //接收到的棋子颜色函数://初始化棋盘、棋子private void InitQpan()//判断该谁走棋private void Judge_HB()//显示棋子private void ShowQz(int i, int j, int QzHB)//重置棋盘棋子private void Rest_Qpan()//备份棋盘棋子private void Qpan_Backup()//恢复棋盘棋子private void Qpan_Restore()//刷新棋盘棋子private void Qpan_Refresh(int QzHB)//计算棋子的气数底层函数private void Base_Calc(int i, int j, int QzHB)//计算气数private void Calc_Ream(int m, int n, int QzHB)//计算气数接口private void Calc_Interface(int QzHB)//落子处理,判断打劫、打n还1、吃掉对方棋子private void Falling(int xx, int yy)//设置打劫private void Set_Attack(int i, int j)//最后落子标记private void Fit_Flag(int xx, int yy)//旁观者最后落子标记private void LookFit_Flag(int Qhb, int xx, int yy)//对方走棋显示在己方并判断打劫、打n还1、吃掉对方棋子private void Opp_Falling()3、跨线程调用封装在CrossThreadCall.cs4、时间有限,程序没有做计算胜负,没有做掉线处理。基本规则有了,其他的就是套接字变来变去,需要新功能自己添加。只是一个初学练习,更多初学资料到我的博客http://www.cnblogs.com/qiaoke/
    2017-03-12下载
    积分:1
  • 页恢复ie代码
    网页恢复ie代码-website restore ie code
    2022-04-25 16:06:26下载
    积分:1
  • 修改 Network 的密码
    修改 Network 网的密码-change the password Network Network
    2022-03-24 00:14:16下载
    积分:1
  • packet-capture-code
    网络数据包抓取代码,压缩包里面的代码比较全,没有解压密码。(network packet capture code,when you extract archive,you no need put in keys.)
    2020-07-09 17:18:55下载
    积分:1
  • brace
    虚拟仪器 声卡采集 信号一些低通滤波处理(Some Low-pass filter processing of signal collected by Virtual instrument Sound Card)
    2018-09-27 09:11:35下载
    积分:1
  • 多通道聊天房用上 windows 套接字
    与服务器和客户端在 c + + 中的 MFC 和线程的多客户端聊天房间 服务器: 多客户端聊天服务器是一个开放源代码 c + + 项目。在这台服务器多个用户可以登录并与另一个作为组播用户进行沟通。在现实生活中它可以使用作为聊天室的服务器。可以修改为对等 (p2p) 文本聊天。它也可以用作一个视频会议项目的骨干。它有一个在 MFC 中的美丽和易于使用的用户界面。该项目是与微软 visual studio 2010 兼容。我将描述类和函数的源代码中的使用。 客户端: 此客户端将使用作为多聊天客户端与我们自己的服务器。在这个客户端,您需要提供服务器 IP、 端口和用户名。
    2022-11-05 21:30:21下载
    积分:1
  • NetTraffic
    VC++流量监控程序,记录选择的接口号,得到接口号为interfaceNumber的接口流量。采用PDH技术对网卡的数据包进行测量,类似360的流量监控工具一样,可以实时观察上网流量的变化,包括上传流量与下载流量。(VC++ traffic monitor, record selection interface number to obtain the interface number of the interface traffic interfaceNumber. Using PDH technology for measuring card packet, similar 360 traffic monitoring tools, real-time observation of changes in Internet traffic, including download and upload traffic flow.)
    2016-09-08 01:39:22下载
    积分:1
  • 696516资源总数
  • 106783会员总数
  • 25今日下载