资源简介
该程序是用于信道均衡响应的一些程序,有迫零均衡,mmse等方法

代码片段和文件信息
function [gsrv1gsrv2]=gngauss(msgma)
% [gsrv1gsrv2]=gngauss(msgma)
% [gsrv1gsrv2]=gngauss(sgma)
% [gsrv1gsrv2]=gngauss
% GNGAUSS generates two independent Gaussian random variables with mean
% m and standard deviation sgma. If one of the input arguments is missing
% it takes the mean as 0 and the standard deviation as the given parameter.
% If neither mean nor the variance is given it generates two standard
% Gaussian random variables.
if nargin == 0
m=0; sgma=1;
elseif nargin == 1
sgma=m; m=0;
end;
u=rand; % a uniform random variable in (01)
z=sgma*(sqrt(2*log(1/(1-u)))); % a Rayleigh distributed random variable
u=rand; % another uniform random variable in (01)
gsrv1=m+z*cos(2*pi*u);
gsrv2=m+z*sin(2*pi*u);
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 800 1997-06-22 15:56 catt-sztx\Gngauss.m
文件 1499 2010-02-28 17:48 catt-sztx\lms.asv
文件 1499 2010-02-28 17:51 catt-sztx\lms.m
文件 2351 2010-02-28 13:21 catt-sztx\mmse.asv
文件 2532 2010-02-28 13:22 catt-sztx\mmse.m
文件 1360 2010-03-01 23:12 catt-sztx\rayley.asv
文件 1348 2010-03-01 23:12 catt-sztx\rayley.m
文件 974 2010-02-28 12:08 catt-sztx\zfe.asv
文件 1011 2010-02-28 12:09 catt-sztx\zfe.m
文件 2274 2010-02-28 14:56 catt-sztx\zfeqn.asv
文件 2274 2010-02-28 14:58 catt-sztx\zfeqn.m
文件 98611 2010-03-02 20:42 catt-sztx\论文.docx
目录 0 2010-03-29 17:46 catt-sztx
----------- --------- ---------- ----- ----
116533 13
- 上一篇:基于Matlab的语音合成技术
- 下一篇:基于matlab的神经网络数字识别
相关资源
- matlab_OFDM调制解调(来自剑桥大学)
- Matlab路面裂缝识别69319
- 高灵敏度GPS接收机MATLAB仿真,附捕获
- 基于MATLAB的质点弹道计算与外弹道优
- 阵列天线的matlab仿真
- MATLAB 经典程序源代码大全
- MATLAB小波软阈值去噪代码33473
- 天线阵的波束形成在MATLAB仿真程序及
- 非线性SVM算法-matlab实现
- 《MATLAB 智能算法超级学习手册》-程序
- 组合导航matlab程序
- 读取txt文件内容matlab代码实现
- Matlab实现基于相关的模板匹配程序
- matlab优化工具箱讲解
- 基于MATLAB的快速傅里叶变换
- 光纤传输中的分布傅立叶算法matlab实
- 基于matlab的图像处理源程序
- matlab 椭圆拟合程序
- 算术编码解码matlab源代码
- optical_flow 光流法 matlab 实现程序
- 引导图像滤波器 Matlab实现
- 分形几何中一些经典图形的Matlab画法
- OFDM系统MATLAB仿真代码
- SVM工具箱(matlab中运行)
- 图像小波变换MatLab源代码
- LU分解的MATLAB实现
- 冈萨雷斯数字图像处理matlab版(第三
- 替代数据法的matlab程序
- 用matlab实现的多站定位系统性能仿真
- 通过不同方法进行粗糙集属性约简m
评论
共有 条评论