-
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
-
Fig5x17
电力电子、电机控制系统仿真模型 经典仿真源程序 洪乃刚版本(Power electronics, motor control system simulation model version of the classic simulation source Hong Naigang)
- 2011-05-09 23:20:08下载
- 积分:1
-
NIT-rourkela-final
thesis paper of active power filter
- 2013-11-02 14:14:36下载
- 积分:1
-
cpm_mycode
实现了L=3,h=0.5,M,RC升余弦CPM调制(Achieve L = 3, RC raised cosine CPM modulation)
- 2010-10-02 11:41:45下载
- 积分:1
-
fenxingandxiaobo
分形样条和小波的源程序,使用matlab代码(Fractal spline and wavelet source, the use of matlab code)
- 2008-03-29 08:52:40下载
- 积分:1
-
3weiinitial
基于粒子群算法的一点个人的研究,希望与大家共同进步 (Particle swarm optimization based on a personal research, hope and progress together)
- 2011-01-04 19:42:52下载
- 积分:1
-
Matlab
说明: MATLAB遗传工具箱及应用,内附程序说明(MATLAB and application of genetic toolbox, containing a description of the procedures)
- 2010-04-15 15:50:52下载
- 积分:1
-
code
This is a file of matlab code.
- 2013-12-18 18:03:57下载
- 积分:1
-
均匀圆阵DOA估计技术
说明: 针对均匀圆阵,在高斯白噪声环境下,仿真DOA估计性能。(For uniform circular array, the performance of DOA estimation is simulated in Gaussian white noise environment.)
- 2021-03-11 17:19:25下载
- 积分:1
-
RussiaBlock
这是一个纯MATLAB编写的俄罗斯方块的游戏。游戏非常的简单,只需上下左右四个键就能操作。算法较为精炼,值得参考。(This is a matlab code about RussionBlock. It s easy and useful.
It worth your time on it.)
- 2010-06-06 21:37:35下载
- 积分:1