资源简介
该程序是用于信道均衡响应的一些程序,有迫零均衡,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的神经网络数字识别
- 基于Matlab的语音合成技术
- MIMO的ML检测matlab程序
- MIMO的ZF检测matlab程序
- 多径瑞利信道的matlab仿真程序
- MIMO的OSIC检测算法。基于三种方式。
- matlab实现带权重的线性回归
- matlab交互式图像分割源程序
- 基于 HMM算法的语音识别的matlab程序
- 图像SNR、PSNR与MSE计算
- 2004-c题(饮酒驾车的数学模型)+mat
- 非线性扩散--PM算法完整matlab代码
- MATLAB全规则元胞自动机
- Gabor变换 MATLAB程序 根据理论自己编写
- MatLab 批量将24位PNG彩图转换为8位PNG彩
- 用MATLAB实现的MM1仿真
- matlab 绘图教程
- 超全的模式识别Matlab源程序
- SPWM的三相MMC的matlab仿真
- 谐波检测 matlab程序
- 船舶航迹控制
- 船舶海上运动matlab仿真
- 遗传算法改进的模糊C-均值聚类MATLA
- MATLAB 汽车牌照识别程序
- HVDC MATLAB风电仿真模型
- 2PSK的调制与解调
- caffe_matlab
- 激光典型腔的matlab计算
- shepp-logan模型
- 基于Matlab的smith圆图程序
评论
共有 条评论