资源简介
多目标蝗虫优化算法,亲测可用。Multi-objective Grasshopper Optimization Algorithm

代码片段和文件信息
function d = distance(ab)
% DISTANCE - computes Euclidean distance matrix
%
% E = distance(AB)
%
% A - (DxM) matrix
% B - (DxN) matrix
%
% Returns:
% E - (MxN) Euclidean distances between vectors in A and B
%
%
% Description :
% This fully vectorized (VERY FAST!) m-file computes the
% Euclidean distance between two vectors by:
%
% ||A-B|| = sqrt ( ||A||^2 + ||B||^2 - 2*A.B )
%
% Example :
% A = rand(400100); B = rand(400200);
% d = distance(AB);
% Author : Roland Bunschoten
% University of Amsterdam
% Intelligent Autonomous Systems (IAS) group
% Kruislaan 403 1098 SJ Amsterdam
% tel.(+31)20-5257524
% bunschot@wins.uva.nl
% Last Rev : Oct 29 16:35:48 MET DST 1999
% Tested : PC Matlab v5.2 and Solaris Matlab v5.3
% Thanx : Nikos Vlassis
% Copyright notice: You are free to modify extend and distribute
% this code granted that the author of the original code is
% mentioned as the original author of the code.
% if (nargin ~= 2)
% error(‘Not enough input arguments‘);
% end
%
% if (size(a1) ~= size(b1))
% error(‘A and B should be of same dimensionality‘);
% end
%
% aa=sum(a.*a1); bb=sum(b.*b1); ab=a‘*b;
% d = sqrt(abs(repmat(aa‘[1 size(bb2)]) + repmat(bb[size(aa2) 1]) - 2*ab));
d=sqrt((a(1)-b(1))^2+(a(2)-b(2))^2);
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1410 2017-07-19 08:29 MOGOA\distance.m
文件 821 2017-07-19 08:29 MOGOA\dominates.m
文件 1183 2017-07-19 08:29 MOGOA\Draw_ZDT1.m
文件 1513 2017-07-19 08:29 MOGOA\HandleFullArchive.m
文件 1375 2017-07-19 08:29 MOGOA\initialization.m
文件 4358 2017-07-19 08:29 MOGOA\MOGOA.m
文件 57220 2017-07-19 08:29 MOGOA\MOGOA.png
文件 1747 2017-07-19 08:29 MOGOA\RankingProcess.m
文件 1603 2017-07-19 08:29 MOGOA\RouletteWheelSelection.m
文件 838 2017-07-19 08:29 MOGOA\S_func.m
文件 1906 2017-07-19 08:29 MOGOA\UpdateArchive.m
文件 956 2017-07-19 08:29 MOGOA\ZDT1.m
文件 1318 2017-07-19 08:29 license.txt
- 上一篇:数学-确定性的丧失 克莱因
- 下一篇:网络与信息安全事件应急预案
相关资源
- 背景差分法 多目标跟踪
- 数据库查询优化算法
- 多目标跟踪MOT16_Benchmark数据集链接
- 自适应粒子群优化算法及其应用
- 基于蚁群算法优化SVM的瓦斯涌出量预
- 果蝇算法融合SVM的开采沉陷预测模型
- 果蝇优化算法优化支持向量回归程序
- 基于机会约束规划的含风场的多目标
- 微电网PSO优化算法
- 带有遗传算子的烟花爆炸优化算法
- 基于改进多目标狼群算法的微电网调
- 数值最优化算法与理论
- 论文研究-基于改进贝叶斯优化算法的
- 异构网络中联合基站休眠与内容缓存
- 多目标自适应和声搜索算法
- (博士论文)多目标动态差分进化算
-
Handbook of me
taheuristics第2版 - MIMO雷达多目标参数估计
- 多目标假设跟踪MHt.doc
- 多目标跟踪
- Ipopt-内点算法使用
- 遗传算法原理及应用
- 板材优化算法SDK及VC调用
- 多目标遗传算法集(对写论文非常有
- 粒子群优化算法 ppt
- Evolutionary Structural Optimization渐进结构
- lingo处理(多目标问题)
- 智能优化算法及其应用
- 基于遗传算法的BP神经网络在多目标优
- 智能优化算法及其应用王凌著.pdf
评论
共有 条评论