-
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
-
clipping_ber_my
ofdm中的PAPR问题的CLIPPING方案的BER(ofdm in the PAPR problem CLIPPING program BER)
- 2021-02-22 05:09:41下载
- 积分:1
-
a
说明: MATLAB用法和MATLAB教程:MATLAB用法和MATLAB教程:(Use MATLAB and MATLAB Tutorial: MATLAB and use MATLAB Tutorial:)
- 2009-05-30 11:30:04下载
- 积分:1
-
11
说明: 用MATLAB模拟界面直观实现嫦娥1号,地球,月球之间的关系.(MATLAB simulation of an intuitive interface with the realization of Chang)
- 2008-11-27 17:38:32下载
- 积分:1
-
MA-STRATEGY
自写策略,MA均线突破,20日均线和50日均线突破的策略,仅供参考(MA20 & MA50 STRATEGY)
- 2013-11-08 10:17:17下载
- 积分:1
-
Matlab-optimal
一本用于matlab最优化设计的电子书籍,对初学者有很大的帮助。(A used in matlab optimization design of electronic books, has a great help for beginners.
)
- 2013-11-18 14:47:02下载
- 积分:1
-
propro
Image Watermarking using DWT algorithm
- 2015-02-20 02:45:11下载
- 积分:1
-
2
系统辨识与自适应控制MATLAB仿真
系统辨识/自适应控制/matlab仿真/源程序(System identification and adaptive control MATLAB simulation
Adaptive system identification/control/matlab simulation/source)
- 2014-01-04 18:46:26下载
- 积分:1
-
accelerated_greedy_EM
an em algorithom for gussuion mixture model.
using matlab
- 2010-07-12 09:20:52下载
- 积分:1
-
Mxulie
产生M序列,可以作为系统的输入,经过系统辨识后得到输出,进而得到系统的传递函数(M sequences generated can be used as the input, output obtained through system identification, and further to the transfer function)
- 2011-04-26 17:00:30下载
- 积分:1