-
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
-
Matlab
说明: 这是一篇比较完成的MATLAB编程的教学实例,很值得下载。(This is a relatively complete MATLAB programming teaching examples, it is worth downloading.)
- 2011-03-04 15:34:42下载
- 积分:1
-
zcyfft
说明: 实现HHT变换过程中一个重要过程--经验模态变换(HHT transform
EMD
empirical mode decompoeition)
- 2011-03-20 14:23:07下载
- 积分:1
-
Tracking
基于图像序列的目标检测与跟踪,可得出图像序列中目标中点的位置(Based target detection and tracking image sequences can be drawn from the midpoint of the target image sequence position)
- 2014-09-19 14:11:57下载
- 积分:1
-
kaisa_filter
包含凯撒滤波器的说明文档和实现的源文件,通过适当的参数设置,实现滤波(Contains documentation of Julius Caesar s filter and realize the source file, with proper parameter Settings and filtering)
- 2014-12-17 22:15:17下载
- 积分:1
-
DISPATCH-OF-MICROGRID
微电网多目标调度,运用改进的多目标粒子群算法进行计算,里面包含经济等三个目标函数设置(Microgrid multi-objective scheduling, using the improved multi-objective particle swarm optimization calculations, which contains the three economic objective function settings)
- 2020-11-05 12:29:50下载
- 积分:1
-
LMS
用matlab语言实现了实现了LMS算法,方法简单,易于实现理解(LMS algorithm using Matlab language, the method is simple, easy to implement understanding)
- 2012-09-07 19:02:16下载
- 积分:1
-
xyplotter-sigma-efd020a1fc67
UN AUTRE MONDE DE LA VISION.............MATLAB..................SEGMENTATION
- 2013-12-12 18:12:00下载
- 积分:1
-
tp_mas
machine asynchrone simuler sur matlab
- 2012-02-04 20:13:29下载
- 积分:1
-
DBAIN
Decision based Impulse noise removal
- 2009-11-05 23:47:08下载
- 积分:1