-
chebyshev_interp
this m file concerning of the subject of interpolation in numerical math of engineering
- 2010-07-18 14:34:14下载
- 积分:1
-
Ali_PID_GA
this rar file consist three files which is Ali_PID_ga ,Ali_ga_test and PID_objfun in order to use these files you have to have gatoolbox
- 2013-01-07 06:29:51下载
- 积分:1
-
graphene
石墨烯的结构编程图,这是费了工作人员很长时间才完成的。(The figures of graphene)
- 2013-09-23 09:09:03下载
- 积分:1
-
selectivemapping_papr
This is matlab simulation of selective mapping technique for papr reduction.Sequences that are independent and represent the same information are generated.PAPR of these are calculated separately. Sequence with the smallest PAPR is selected for final serial transmission
- 2013-11-08 19:54:19下载
- 积分:1
-
人工鱼群算法
format longVisual=2.5;Step=0.3;delta=0.618;N=50;Try_number=100;a1=-10;%控制左区间1b1=10;%控制右区间1a2=-10;%控制左区间2b2=10;%控制右区间2d=[];U=[];h=1e-1;Friend_number=50;k=1;m=51;X1=rand(N,1)*(b1-a1)+a1;X2=rand(N,1)*(b2-a2)+a2;X=[X1 X2];%人工鱼状态for i=1:Nwwww=[X(i,1),X(i,2)];d(i)=maxf(wwww); %将d的值依次列出来end[w,i]=max(d); %w为d的最大值,i为最大值对应的下标即第几条鱼maxX=[X(i,1),X(i,2)];%初始公告板记录 ,将最大值对应的X赋给maxXmaxY=w;%初始公告板记录
- 2022-03-02 21:32:12下载
- 积分:1
-
meanshift
说明: meanshift跟踪算法的实现,主要是利用metlab来完成的,效果还不错(mean shift tracking algorism)
- 2011-04-07 19:28:35下载
- 积分:1
-
gatbx-toolbox
说明: matlab遗传算法工具箱,解决遗传算法中函数不识别的现象(matlab genetic algorithm toolbox to solve the genetic algorithm function does not recognize the phenomenon of)
- 2008-11-25 11:24:35下载
- 积分:1
-
LFM_MF
雷达LFM信号匹配滤波程序,压缩带宽,列出了匹配滤波器的系统函数(Radar LFM signal matched filtering process, compression, bandwidth)
- 2012-04-18 16:30:50下载
- 积分:1
-
matlab-optimization-design
matlab优化设计,基于matlabR2009版本,对优化设计方面做了详细的理论分析及实例讲解(matlab optimization design, optimize the design based matlabR2009 version, detailed theoretical analysis and examples to explain)
- 2013-04-07 22:27:31下载
- 积分:1
-
故障检测 免疫算法 源码
应用 MATLAB编写的 故障检测 的 免疫算法源程序。好用绝对!
clc;
clear all;
global popsize length min max N code;
N=12; % 每个染色体段数(十进制编码位数)
M=20; % 进化代数
popsize=20; %设置初始参数,群体大小
length=10; % length为每段基因的二进制编码位数
chromlength=N*length; %字符串长度(个体长度),染色体的二进制编码长度
pc=0.7; %设置交叉概率,本例中交叉概率是定值,若想设置变化的交叉概率可用表达式表示,或从写一个交叉概率函数,例如用神经网络训练得到的值作为交叉概率
pm=0.3; %设置变异概率,同理也可设置为变化的
bound={-100*ones(popsize,1),zeros(popsize,1)};min=bound{1};max=bound{2};
pop=initpop(popsize,chromlength);
- 2022-01-27 10:26:32下载
- 积分:1