-
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
-
integral1D
This code from Matlab central file
- 2009-12-07 23:57:36下载
- 积分:1
-
GA_insar
遗传算法,主要用于解决雷达成像中的insar干涉定标时的敏感度问题。(Genetic Algorithm, mainly used to solve the problem of the sensitivity of the radar imaging insar interferometric calibration time.)
- 2016-05-01 18:49:01下载
- 积分:1
-
radar
瑞利分布的气象雷达回波,时频分析,功率谱密度,频谱分布。(Rayleigh distribution of meteorological radar echo time-frequency analysis, power spectral density, spectral distribution.)
- 2010-05-16 11:47:14下载
- 积分:1
-
matlab_test
车牌检测系统,使用matlab实现,里面带有车牌图片,很不错(License plate detection system using matlab to achieve, which with the license plate picture, very good)
- 2013-03-26 22:59:43下载
- 积分:1
-
FaceGeometry
Geometric Feature based Face detection
- 2011-01-12 18:56:09下载
- 积分:1
-
TSP-of-ACO-matlab
蚁群算法用于解决TSP问题,用matlab实现的算法,调试通过(ant colony optimization alorithm TSP problem )
- 2012-05-06 01:23:10下载
- 积分:1
-
qrcode
生成二维码和解析二维码的功能样板,具有嵌套图片,文字等个性化二维码生成器,解析二维码,抽取二维码内容(Generate two-dimensional code and two-dimensional code parsing model with nested images, text and other personalized two-dimensional code generator, two-dimensional code parsing to extract the contents of the two-dimensional code)
- 2015-01-09 16:35:51下载
- 积分:1
-
Cable_Reset_Chip_printer
Manual Reset Chip KIT
(Using the Chip Samsung, Xerox)
- 2015-03-10 23:07:26下载
- 积分:1
-
source-localization
一个非常好的定位算法,适用于源定位,包括文章和算法(Alleviating sensor position error in source localization)
- 2011-05-20 11:22:42下载
- 积分:1