-
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
-
Desktop
The files contain good ebooks for C++ programing and for Matlab
- 2010-11-11 16:33:25下载
- 积分:1
-
randomgen.m
A function that takes two random variables and computes their expectation value and variance.
- 2009-11-27 14:01:10下载
- 积分:1
-
OFDMBERVsSNR
说明: 不同信噪比下ofdm系统的仿真程序,不同的误码率(OFDM systems under different signal to noise ratio of the simulation program, different BER)
- 2008-12-08 09:41:42下载
- 积分:1
-
Digital_Mod_over_Fading---Copy
code describie a wireless channel , very useful for studying
- 2013-01-10 12:24:02下载
- 积分:1
-
digital-modulation-
matlab实现数字调制ASK FSK PSK(matlab digital modulation ASK FSK PSK)
- 2013-01-15 14:46:14下载
- 积分:1
-
在MATLAB中画多条不同颜色曲线的脚本程序-linspecer
在MATLAB中画多条不同颜色曲线的脚本程序,非常方便(Videos multiple different color curve scripts in MATLAB, very convenient)
- 2020-11-29 15:59:29下载
- 积分:1
-
Jane-case-said-genetic-algorithm
通过一个简单的例子来讲解遗传算法,适合初学者学习领悟遗传算法的真谛。(Through a simple example to explain the genetic algorithm, genetic algorithm is suitable for beginners to learn comprehend the true meaning.)
- 2013-08-05 20:50:05下载
- 积分:1
-
CS
说明: 布谷鸟搜索算法的源代码matlab实现,非常适合初学者使用(Cuckoo search algorithm source code matlab realize, very suitable for beginners to use)
- 2013-03-07 10:21:30下载
- 积分:1
-
matlab-homework1
MATLAB作业一 分别用for和while循环结构编写程序,求出 。并考虑一种避免循环语句的程序设计算法,比较不同算法的运行时间。(MATLAB operating a program were used for and while loops structure determined. And consider a way to avoid the loop statement programming algorithm, the running time of the different algorithms.)
- 2012-09-03 10:57:39下载
- 积分:1