-
lelubo
滤波器系数重构运用该算法可以对图象进行去噪处理(reconstruction filter coefficients using this algorithm can be right image denoising)
- 2006-09-22 12:56:16下载
- 积分:1
-
matlab
denoise and wacelet analysis of signals
- 2012-11-09 15:46:42下载
- 积分:1
-
mtspofs_ga
Matlab script that solves the multiple Travelling Salesman Problem with fixed start points where the salesman do not return to their starting location
- 2009-10-19 15:07:55下载
- 积分:1
-
idealfilter
matlab平台下的滤波程序,能够进行高通,低通滤波(matlab platform filtering procedures, to carry out high-pass, low pass filtering)
- 2008-05-09 09:08:32下载
- 积分:1
-
AR
说明: ARMA预测程序源代码,经二阶差分后对油价进行预测的实例。(a program to predict the price of oil, using ARMA module)
- 2011-01-11 15:02:49下载
- 积分:1
-
shape-test-by-matlab
用Matlab实现图像中的形状如矩形、圆形和正方形的检测(Matlab implementation by the shape of the image, such as rectangular, circular and square test)
- 2011-05-05 16:31:10下载
- 积分:1
-
Walking_robot
利用机器人工具箱构造的一个简易四足机器人代码,画出了具体图像。(matlab code for building four leg robot with robotic toolbox.)
- 2013-02-25 21:40:54下载
- 积分:1
-
liziqun
matlab粒子群优化算法粒子群优化算法(matlab particle swarm optimization algorithm)
- 2013-04-10 09:34:50下载
- 积分:1
-
bp_tri
用matlab语言编写的BP网络,实现了将数字0-9转为二进制的功能(Matlab language with the BP network achieved the numbers 0-9 into the binary function)
- 2010-06-15 20:11:03下载
- 积分: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