-
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命令大全,学习资料,非常全面。(MATLAB command Daquan, learning materials, very comprehensive.)
- 2009-10-20 11:06:37下载
- 积分:1
-
clk
用MATLAB编写的时钟,希望对感兴趣的人有用(a clock code with matlab , hope useful to the one interested~)
- 2012-05-30 23:41:55下载
- 积分:1
-
linear-search
一种常用的线性搜索技术,快速精确希望对大家有所帮助。(A common linear search technology, quickly and accurately hoping help you.)
- 2013-07-19 12:05:29下载
- 积分:1
-
SCIGwindmodel
SCIG wind turbine modeling in Matlab/Simulink.
- 2012-07-30 22:27:22下载
- 积分:1
-
sample-code-for-image-histogram
color histogram of an image
- 2013-09-20 09:23:38下载
- 积分:1
-
2_Matrices_et_operations_de_base
Matlab MAtrice et opération de base
- 2012-08-14 17:31:14下载
- 积分:1
-
save_parameters
this file implements the saving of the simulation results for wimax 802.16e matlab simulator. can be used for communications simulations. implemented as a matlab function file. very easy to use
- 2012-01-23 23:26:56下载
- 积分:1
-
untitled1
基于matlab的数字水印的提取攻击嵌入很gui界面制作(Based the Matlab digital watermark extraction Attack embedded gui interface production)
- 2013-05-17 20:29:21下载
- 积分:1
-
mp
说明: 该算法是贪婪算法mp的matlab程序,用于信道估计等等(The algorithm is greedy mp' s matlab program for channel estimation, etc.)
- 2011-10-07 14:28:05下载
- 积分:1