-
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
-
exo_decouplage_courants
Chapitre estimation de la vitesse de rotation
Section Estimation de la vitesse de rotation par modèle adaptatif
- 2010-12-18 21:35:01下载
- 积分:1
-
dwtembed
this program describ disrete wavelet transformations
- 2009-06-07 00:30:49下载
- 积分:1
-
GuiPaint
说明: GLScene简单的功能实例,简单演示了GUI功能实现(GLScene samples)
- 2010-03-26 16:43:44下载
- 积分:1
-
CRLB
一个关于克拉美罗界的代码,其中没有关于费舍尔矩阵的问题(CRB code on which there is no question about the Fisher matrix)
- 2020-11-29 23:09:28下载
- 积分:1
-
project
Project for Cal Poly Pomona ARO 401 course.
- 2015-03-17 16:23:09下载
- 积分:1
-
fs_entropy
data reduction with fuzzy rough sets or fuzzy mutual information
- 2009-03-27 02:38:31下载
- 积分:1
-
WiMAX_module-1.02
Its the source code for implementing WIMAX in NS-2
- 2009-04-28 13:07:18下载
- 积分:1
-
PSO
说明: 这是粒子群优化算法的实现,求解多模态函数非常使用(This is the Particle Swarm Optimization algorithm to solve multi-modal function is the use of)
- 2008-10-24 13:59:37下载
- 积分:1
-
slbb
simulation of slbb in matlab fuzzy logic toolbox
- 2014-12-15 06:50:51下载
- 积分:1