-
pcode-d6c2om
matlab实现的遗传算法和蚁群算法,结合了CRGrSW算法的优点,解决nuQGcYb问题,求其最优解的整个步骤,是个不错的程序,调试没有错误
(Genetic algorithm and ant colony algorithm matlab implementation, combined with the advantages ofCRGrSW algorithm to solve nuQGcYb problem, the entire step of seeking the optimal solution, is a good program, no error debugging
)
- 2015-12-26 10:02:44下载
- 积分:1
-
matlabjindiansuanfa
matlab超级经典的各类程序 拟合 插值 画图 积分 规划 解方程 数据分析 包括了基本的一些经典算法 (super-classic types of procedures matlab fitting interpolation Paint integral equation solution of data analysis plan included a number of basic classical algorithm)
- 2009-10-20 22:22:41下载
- 积分:1
-
uv
说明: A VARIATIONAL APPROACH TO REMOVE MULTIPLICATIVE NOISE
- 2015-03-30 17:24:45下载
- 积分:1
-
duojulei
各种聚类方法的比较,突出每一种聚类方法的优点,有助于不同目的者使用(Comparison of various clustering methods, highlighting the advantages of each clustering method can help to use a variety of purposes)
- 2010-08-18 08:49:26下载
- 积分:1
-
PV_modele3
PHOTOVOLTAIC MODELISATION WITH SIMULINK
- 2013-11-06 20:58:55下载
- 积分:1
-
Root-MUSIC--DOA
利用求根MUSIC算法进行DOA估计的源程序(Root MUSIC algorithm using the DOA estimation of the source)
- 2013-11-02 00:19:00下载
- 积分:1
-
convolutionsystem-matlab-gui
使用matlab gui完成线性卷积和圆周卷积的动态演示系统,并且使用圆周卷积完成线性卷积,属于信号处理的基础应用(Matlab gui complete linear convolution and circular convolution dynamic presentation, and completion of the circular convolution linear convolution, are the basis of the signal processing applications)
- 2013-05-15 22:36:42下载
- 积分:1
-
matlab_fvs_12_29_03_120
Raymond thai paper code.
enojy
all the best!!!
- 2012-02-04 17:37:24下载
- 积分:1
-
design
说明: 识别五种不同颜色的物块,并分析出具体颜色和形状。(Identify five different color blocks, and analyze the specific color and shape.)
- 2019-05-04 12:52:26下载
- 积分:1
-
conversion_gui
function ret = Int2Hex(var)
Prints integer array to hexadecimal string
varType = class(var)
cast signness away:
if ( u ~= varType(1) )
varType = [ u varType]
var = typecast(var,varType)
end
nBits = str2double(varType(5:end))
if (64 == nBits)
split 64 bit case into two 32 s
cuz dec2hex doesn t handle 64 bit...
varType(5:end) = 32
var = typecast(var,varType)
end
ret = dec2hex(var)
if (64 == nBits)
littleEndian = all(typecast(uint32(1), uint16 )==[1 0])
first = 1 + littleEndian
second = 2 - littleEndian
ret = [ret(first:2:end,:),ret(second:2:end,:)]
end
end
- 2010-07-30 09:39:56下载
- 积分:1