-
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
-
1
找的代码,并自己将每条代码的意义分析,用于学习的人。(To find the code, and he will analyze the meaning of each code used to learn.)
- 2010-05-13 17:28:18下载
- 积分:1
-
dynamic-simulation
使用matlab中的simulink模块进行动态仿真的PPT文档和模型文件。(Using matlab simulink module in the dynamic simulation model of documents and PPT files.)
- 2011-05-30 20:42:57下载
- 积分:1
-
isodata_matlab
使用matlab编程对于isodata算法的实现(Using matlab programming algorithm for isodata)
- 2013-07-17 22:44:33下载
- 积分:1
-
fuzzy-identification-
fuzzy identification
- 2014-10-18 18:22:21下载
- 积分:1
-
Chapter_2
Harada book simulation chapter 2
- 2009-04-02 13:37:34下载
- 积分:1
-
RoboticsToolboxformatlab
Robotics Toolbox for matlab简要帮助文件
可以用于机器人路径规划(Robotics Toolbox for matlab)
- 2009-05-08 11:37:57下载
- 积分:1
-
identification
soft code regarding image processing
- 2010-01-03 14:19:09下载
- 积分:1
-
5_mathematical_morphology
Image morphology using matlab
- 2010-02-15 10:52:16下载
- 积分:1
-
TDSR
说明: 无线传感器网络路由协议DSR的改进的matalb仿真实例(DSR routing protocol for wireless sensor networks improved the matalb simulation)
- 2011-03-28 17:14:22下载
- 积分:1