-
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
-
Codec
DSK源码包,用于实现8KHzLDE灯的频闪功能(DSK source package, used to implement 8KHzLDE strobe light function)
- 2010-01-08 06:05:10下载
- 积分:1
-
my-work-project
to find pitch record and play signal
- 2011-04-20 06:24:46下载
- 积分:1
-
k-means
用于图像分割的方法很多,其中基于K均值的图像分割方法较为常用,本程序附有详细注解(Image segmentation method based on K-means, with detailed notes)
- 2014-01-20 12:30:45下载
- 积分:1
-
MATLAB
说明: 我的matlab实验 MATLAB运算基础 选择结构程序设计 循环结构程序设计 函数文件 高层绘图操作 数据处理与多项式计算 数值微积分与方程数值求解 符号计算基础与符号微积分(My matlab choice experiment based on the structure MATLAB programming operations structured programming cycle function file data processing and high-level drawing operations polynomial equation calculated with numerical integration and numerical solution based on symbolic computation and symbol calculus)
- 2011-03-04 10:23:01下载
- 积分:1
-
matlab--Find-the-optimal-solution-
寻找最优解或最佳路径的多种matlab算法,其中包括蚁群算法,贪婪算法,哈密顿算法,floyd算法,dijkstra算法,遗传算法等(Find the optimal solution or the best path for a variety of matlab algorithms, including the ant colony algorithm, greedy algorithm, Hamiltonian algorithm, floyd algorithm, dijkstra algorithm, genetic algorithm)
- 2013-03-18 20:17:19下载
- 积分:1
-
eemd
本程序为EEMD分解程序,用于信号的EEMD分解(This procedure for the EEMD decomposition process, a signal for EEMD decomposition)
- 2015-02-04 18:31:16下载
- 积分:1
-
Correlation
关于信道相关性的matlab程序,可以计算天线间的相关性,不同多径间的相关性(On the channel correlation matlab program that can calculate the correlation between the antennas, the correlation between the different multipath)
- 2020-11-24 08:59:33下载
- 积分:1
-
dsezjc
speex-1,2rc2,tar,gz linphone依赖库源码包(Rc2 speex- 1, 2, tar, gz linphone rely on library source code package)
- 2017-03-13 18:37:52下载
- 积分:1
-
hybridfun1
一个matlab程序,可以根据自己需要进行修改(an FNN Matlab procedures, according to its own need for amendment!)
- 2012-04-27 11:41:19下载
- 积分:1