-
intruderdetection
this is all about Intruder Detection and Recording
- 2010-01-22 14:08:22下载
- 积分:1
-
antenna-pattern
有关天线方向图的实现,主要是线阵方向图的实现(The implementation of the antenna pattern, mainly linear array)
- 2013-01-18 19:06:17下载
- 积分:1
-
golden
matlab解决黄金分割法一维无约束最优化问题,(use matlab for golden)
- 2014-10-20 22:38:27下载
- 积分:1
-
MOM
矩量法经典书籍,word版本,计算电磁学经典算法。(Method of Moments classic books, word version, computational electromagnetics classic algorithms.)
- 2011-09-02 21:11:18下载
- 积分:1
-
EKF-UKF-PF
用模拟仿真对EKF UKF PF 的三个算法进行比较(EKF UKF PF three methods)
- 2012-10-28 14:54:44下载
- 积分:1
-
MomentsZernike
moment s zernike algorithm
- 2013-05-27 04:47:14下载
- 积分:1
-
verhulst_model
verhulst 预测软土路堤沉降,采用matlab编写(verhulst model for predicting the soft embankment settlement)
- 2012-12-10 16:01:26下载
- 积分:1
-
test
this is matlab dat file whis contan infor
- 2010-11-24 02:05:39下载
- 积分:1
-
search
searching pupil and iris boundaries
- 2009-02-26 18:54:56下载
- 积分: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