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

人工免疫多目标程序

于 2018-05-15 发布 文件大小:6KB
0 187
下载积分: 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 个回复

  • baidump3
    MP3批量百度搜索下载工具 本人自己兴趣写的,利用百度快速方便搜索下载MP3,生成视听列表或下载的工具,设计完全是根据本人自己所需编写,除了用了界面控件没用其它控件. 如各位有需要可以用用,代码完全公开,取用请留我原创. (MP3 download batch Baidu search tools I own interest in writing, use Baidu search quickly and easily download MP3, audio-visual production list or download the tools, Design is entirely based on my own for the preparation, In addition to using the control interface useless other controls. If you need can be used, code totally open, I requested access to stay original.)
    2007-05-17 19:53:08下载
    积分:1
  • 是一个很好的站模板,希望能和志同道合的友们共同进步。...
    是一个很好的网站模板,希望能和志同道合的网友们共同进步。-is a very good web site templates, hopes to be able to like-minded netizens to common progress.
    2023-07-11 07:05:04下载
    积分:1
  • 自己写的socks5代理完整源代码!
    自己写的socks5代理完整源代码!-togig wrote the integrity of the source code Acting!
    2022-02-27 04:44:39下载
    积分:1
  • 新建文件夹
    利用形态学的形态组合滤波器对数字信号去噪,可低通滤波(Digital signal de-noising, low pass filtering)
    2017-12-26 18:14:24下载
    积分:1
  • CAPSO
    说明:  Chaostic APSO,对加速粒子群优化的改进版本。相较于普通加速粒子群优化,该版本不仅收敛速度更快,而且加强了陷于局部最优的能力。(Chaostic APSO, an improved version of accelerated particle swarm optimization. Compared with conventional accelerated particle swarm optimization, this version not only converges faster, but also enhances the ability to trap in local optimum.)
    2020-07-14 19:18:50下载
    积分:1
  • lyzz23
    本程序以动态的方式给对话框加载背景图,给人耳目一新的感觉()
    2018-04-28 12:12:12下载
    积分:1
  • 多线IP扫描
    多线程IP扫描程序-multithreaded IP Scan
    2023-07-22 18:00:02下载
    积分:1
  • weblogic基本概念
    WebLogic 应用服务器有如下几个基本概念:  Domain: 域是个逻辑概念,用来组织管理一系列的应用服务器实例,也就是下面要解释的server. 域是WebLogic应用服务器中最大的概念,WebLogic应用服务器启动的时候就是以某个域来启动的,它有一个中心配置文件叫config.xml. A domain is the basic administration unit for WebLogic Server instances (servers) that is represented in its own configuration file (config.xml). A domain consists of one or more servers (and their associated resources) that you manage with a single Administration Server. Cluster: 族也是一个逻辑概念,用来分组用途相同的服务器实例,一个域中可以有多个族。 A cluster is a deployment in which multiple WebLogic Server instances (servers) run simultaneously and work together to provide increased scalability and reliability. A cluster appears to clients to be a single WebLogic Server instance. The servers that constitute a cluster can run on the same machine, or be located on different machines. Machine: 机器是物理上的概念,代表一台运行WebLogic应用服务器的实在的机器,包括其IP地址等信息。一个域中可以包括多台机器。(同一台机器可以属于不同的域吗?) A machine is the logical representation of the computer that hosts one or more WebLogic Server instances (servers). WebLogic Server uses configured machine names to determine the optimum server in a cluster to which certain tasks, such as HTTP session replication, are delegated. The Administration Server uses the machine definition in conjunction with the Node Manager application to start remote servers. Server: 服务器,也就是一个应用服务器的实例,用来部署和运行各种J2EE应用程序,也可以来配置各种服务程序。它是WebLogic应用服务器的基本服务单元。一个WebLogic域中一般有一个管理服务器和多个被管理服务器。也就是下面我们要谈到的两个概念。  A server is an instance of WebLogic Server that runs in its own Java Virtual Machine (JVM) and has its own configuration. Each WebLogic Server domain must have one server that acts as the Administration Server. In a typical production environment, the Administration Server is where the Administration Console is run and used to perform administrative tasks. By default, the Administration Server is called myserver. A typical production environment may also have one or more Managed Servers, which are instances of WebLogic Server used to host enterprise applications. Administrative Server: 管理服务器是用来管理配置域的中心点,一般来说,管理服务器上是不部署应用程序的,而是用来统一管理、配置、监控被管理服务器以及部署应用程序到被管理服务器上。一个域中有一台管理服务器。 Managed Server: 被管理服务器是用来部署运行各种应用程序的。一个域中有一台或多台被管理服务器。 Node Manager: 节点管理器是一个单独运行的后台程序,一般运行在被管理服务器的机器上,用来提供远程启动和停止服务器(Server)的功能。
    2014-02-28下载
    积分:1
  • Vrognams_Fractal
    Mini Programs, written in VC++ to display xg1cc Fractal Images, can learn
    2018-12-01 19:57:41下载
    积分:1
  • DPSO
    说明:  离散的PSO算法解决0-1背包问题,比传统的PSO效果更好(Discrete PSO algorithm solves the 0-1 knapsack problem)
    2021-04-14 15:48:55下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载