-
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
-
BPSK
matlab实现BPSK的调制,并用simulink进行仿真。(matlab achieve BPSK modulation, and simulink simulation.)
- 2008-04-24 22:16:15下载
- 积分:1
-
Diversity_STBC
对应论文写的时空码的仿真程序。为2天线,BPSK调制模式。自己写的Space time code simulation提供给大家(Papers written in the corresponding space-time code of the simulation program. 2 antennas, BPSK modulation mode. Write your own Space time code simulation available to the U.S.)
- 2007-10-28 02:08:54下载
- 积分:1
-
MATLAB_Demystified-[Sality]
matlab demystified nice book pretty good
- 2015-04-06 01:58:35下载
- 积分:1
-
rls_nlms
Algoritmo de rls en matlab, archivo .m
- 2010-07-12 06:46:22下载
- 积分:1
-
correl
calculate the correlation and convolution
- 2009-04-20 15:50:05下载
- 积分:1
-
matlab4
matlab仿真程序,适合初学者,比较实用,可用性高。(matlab simulation program, suitable for beginners, more practical, high-availability.)
- 2008-05-27 10:02:08下载
- 积分:1
-
matlab
Matlab有关的编程知识,有兴趣的可以下来看看(Matlab programming knowledge, who are interested can look down)
- 2013-03-06 22:03:35下载
- 积分:1
-
fig2_SOM
The sourcecode of Universally-Convergent Squared-Operator Iteration Methods for fig2 using SOM
- 2013-12-03 20:50:07下载
- 积分:1
-
zuoye
wav格式信号频谱分析,在matlab开发环境下可以很好的应用(wav format, the signal spectrum analysis, in the matlab development environment may be a good application of)
- 2009-10-07 15:09:37下载
- 积分:1