-
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
-
question1
最小错误率的贝叶斯分类器设计matlab代码实现(Bayes minimum error rate classifier design matlab code)
- 2011-06-06 17:58:21下载
- 积分:1
-
7
说明: 7. 单径瑞利信道中的两发一收STBC:
(1) 分析误码率的理论性能,画出比特信噪比与误码率的关系曲线。
(2) 请设计一种具体的导引辅助的信道估计方法,用Simulink进行仿真,测量BPSK调制时的误码率性能。画出比特信噪比与信道估计均方误差的关系曲线,画出比特信噪比与误码率的关系曲线。
(7 single-path Rayleigh channel of the two rounds of a close STBC: (1) the theoretical analysis of BER performance, draw the signal to noise ratio and bit error rate curve. (2) Please design a specific guide-assisted channel estimation method, the Simulink simulation, BPSK modulation measuring the bit error rate performance. Draw-bit signal to noise ratio and channel estimation mean square error curve, draw-bit signal to noise ratio and bit error rate curve.)
- 2011-07-20 10:57:59下载
- 积分:1
-
enalem
The program computes and plots the equation of time, the declination, and an analemma curve for various orbital parameters. The analemma is the curve traced by the position of the sun, measured at clock noon, over a year.
- 2014-08-14 05:04:08下载
- 积分:1
-
MyuzhiwavefilA
利用MATLAB实现峰值信噪噪比的公式,很好用。精确的验证过
(Using MATLAB to achieve a peak signal-to-noise to noise ratio formula, easy to use. Verified accurate)
- 2012-07-23 11:12:02下载
- 积分:1
-
MATLAB simulation of the Brown movement
布朗运动的MATLAB模拟,动态图形的一个简单学习例程。txt文件,粘贴到matlab中就可以运行。(The MATLAB simulation of the Brown movement, a simple learning routine for dynamic graphics. Txt files, paste into the Matlab can run.)
- 2018-02-09 23:12:31下载
- 积分:1
-
function_source
matlab自编函数库,含有大量常用函数。。。。。。。。。。。。。。。。(self matlab function library containing a large number of commonly used functions. . . . . . . . . . . . . . . .)
- 2013-08-05 18:53:02下载
- 积分:1
-
BottomUpProfileDataGridTree
Bottom Up Profiling shows the entire callstack backwards.
- 2014-01-12 10:03:22下载
- 积分:1
-
SIMULINK
讲解MATLAB中SIMULINK的主要功能和模块(SIMULINK of MATLAB on the main functions and modules)
- 2009-03-19 00:16:22下载
- 积分:1
-
Parallel-Computer-Architecture
讲述并行计算机体系结构,包括并行编程技巧,适应于最近并行计算机的应用(parallel computer architecture and parallel compiling technics)
- 2011-01-28 09:12:52下载
- 积分:1