-
hcp
说明: gaussian输入文件 密排六方输入文件(gaussian input file input file HCP)
- 2011-02-23 19:03:30下载
- 积分:1
-
multimedia_materials
Joint Estimation of Channel and Oscillator Phase
Noise in MIMO Systems Hani Mehrpouyan, Member, IEEE, Ali A. Nasir, Student Member, IEEE, Steven D. Blostein, Senior Member, IEEE,
Thomas Eriksson, George K. Karagiannidis, Senior Member, IEEE, and Tommy Svensson, Senior Member, IEEE
IEEE TRANSACTIONS ON SIGNAL PROCESSING, VOL. 60, NO. 9, SEPTEMBER 2012 1
- 2014-02-21 07:53:18下载
- 积分:1
-
sgs
说明: 随机过程在三国杀中的数学建模及matlab仿真报告(Three killed in Stochastic Process in Mathematical Modeling and Simulation Report matlab)
- 2011-04-08 14:32:12下载
- 积分:1
-
FSKdoc
利用matlab中的simulink软件包实现FSK调制的误码率统计(Use in matlab simulink package to achieve FSK modulation error rate statistics)
- 2011-07-01 17:02:41下载
- 积分:1
-
peEllip5
5点差分求二维偏微分椭圆型换热问题,采用拉普拉斯变换,求解带有第一类,第二类,混合边界条件的换热问题。(5-point differential heat seeking two-dimensional elliptic partial differential problems, using the Laplace transform, solution with a first class, second class, mixed boundary conditions of heat transfer problems.)
- 2011-10-04 19:42:11下载
- 积分:1
-
GOA
it s a matlab GUI code for Monte Carlo simulation of scattering on rough surface.
- 2011-05-22 10:14:40下载
- 积分:1
-
tftb-0.1
小波分析 时频工具箱。做小波变换时很有用。大家可以参考。(Time-frequency wavelet analysis toolbox. Useful to do wavelet transform. We can refer to.)
- 2012-05-05 16:53:39下载
- 积分:1
-
Pulsed_Radar_System
脉冲雷达系统Simulink实现(Matlab6中可以用,Matlab7中没有试过)(pulsed radar system to achieve Simulink (Matlab can be used. Matlab7 not tried))
- 2007-06-05 00:21:37下载
- 积分:1
-
eemd-plot
对一列信号进行eemd的分解以及解得到其各分量用eemdplot.m画出,因此只须运行eemdplot.m即可。(A signal decomposition of eemd and solution of its components with eemdplot.m draw, so only run eemdplot.m can.)
- 2021-03-23 15:19:15下载
- 积分:1
-
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