-
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
-
four_bar_mechanism
四杆机构运动求解,可运算关节角度,角加速度等(four-bar mechanism)
- 2009-05-23 19:54:54下载
- 积分:1
-
EXEMPLE1
the detection between frames
- 2011-01-14 06:05:01下载
- 积分:1
-
aero_guidance_Test2
导航制导率的matlab模拟M文件,非比例制导率。(Rate Matlab simulation of navigation-guided M-file)
- 2012-06-12 17:10:31下载
- 积分:1
-
PSOt
粒子群算法的标准程序,非常易懂,适合初学者。(The standard programme of PSO)
- 2010-09-27 19:47:59下载
- 积分:1
-
cisco_labs
CCNA Exploration 4.0.5.0
Routing Protocols and Concepts
Instructor Packet Tracer Lab Manual (answers)
- 2013-10-03 23:16:40下载
- 积分:1
-
copula函数拟合出来后,通过计算各类copula函数的aic值aic_account
说明: copula函数拟合出来后,通过计算各类copula函数的aic值,找到最佳的copula二元分布模型(Calculating AIC values of different Copula Functions)
- 2020-11-10 09:59:46下载
- 积分:1
-
nrziviterbi
nrzi viterbi with snr 2 , 4 ,6, 8 dB and calculating BER
- 2010-11-29 09:59:43下载
- 积分:1
-
upResolDemo
这是一个超分辨率图像复原的代码,仿真实验结果较好,不过原作者对其中两个文件处理过,所以不知道具体的原理(This is a super-resolution image restoration code, simulation results, however, the original author treated them two files, so I do not know the specific principle)
- 2013-03-19 16:48:15下载
- 积分:1
-
GPS_BUHUO
GPS码捕获方法及仿真图形,包括对导航电文的读取(GPS code capture method and the simulation, including the navigation message reads
)
- 2014-05-26 13:32:18下载
- 积分:1