-
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
-
simulated-annealing-algorithm
matlab模拟退火算法的TSP算法,并实现以求解得到最优。(matlab simulated annealing algorithm TSP algorithm and implementation.)
- 2014-12-23 13:20:32下载
- 积分:1
-
music
MUSIC算法,可以降噪,提高分辨率,用于图像质量提高(MUSIC algorithm, noise reduction, improved resolution for improved picture quality)
- 2013-12-18 09:57:06下载
- 积分:1
-
koutai_v17
仿真效率很高的,各种资源分配算法实现,包含了阵列信号处理的常见算法。( High simulation efficiency, Various resource allocation algorithm, Contains a common array signal processing algorithm.)
- 2016-05-30 16:25:33下载
- 积分:1
-
huguangshuguangpan
胡广书现代信号处理导论随书光盘,包括各个章节,很全,大部分能直接拿来用,很实用(Hu Guang-shu of modern signal processing Introduction to CD-ROM)
- 2009-09-25 00:24:09下载
- 积分:1
-
matlab
matlab & VB document PPT useful for mastres
- 2011-05-09 08:22:28下载
- 积分:1
-
MATLAB-sg-DSP-IP
说明: 使用MATLAB为System Generator for DSP创建IP(The use of MATLAB for System Generator for DSP to create IP)
- 2009-08-04 23:43:13下载
- 积分:1
-
Assignment_No2
利用均匀分布产生高斯白噪声随机数,瑞利随机数,泊松随机数。附有报告~(The use of Gaussian white noise uniformly distributed random number generation, random number Rayleigh, Poisson random number. Accompanied by the report-)
- 2014-11-28 13:30:42下载
- 积分:1
-
SmartTag
Smarttag control manipulation
- 2015-02-11 09:38:48下载
- 积分:1
-
Newton-Raphson-With-Ploss
Calculated power flow of Newton-Raphson method with considering power loss
- 2012-11-05 13:45:53下载
- 积分:1