资源简介
文件包含Clarke和Jakes信道模型详细的理论推导与区别,并附有完整代码,可以清晰认识两种常见无线模型。
代码片段和文件信息
% plot Clark channel model
clear
clc
fm=100; % 最大Doppler
ts_mu=50; % 持续时间
scale=1e-6;
ts=ts_mu*scale; %采样时间
fs=1/ts; % sample frequency
Nd=1e6; % 采样数
%generat channel information
[hNfftNifftDoppler_coeff]=Clarke_model(fmfsNd);
subplot(211)
plot([1:Nd]*ts10*log10(abs(h)));
str=sprintf(‘channel model by Clarke with fm=%d[Hz]Ts=%d[mus]‘fmts_mu);
title(str);
% 信道包络
subplot(223)
hist(abs(h)50);
% 信道相位
subplot(224)
hist(angle(h)50);
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2014-05-29 21:12 Clake and Jakes channel\
目录 0 2014-05-29 16:50 Clake and Jakes channel\Clarke\
文件 194936 2014-05-29 21:02 Clake and Jakes channel\Clarke Model and Jakes model analysis.docx
文件 511 2014-05-29 14:33 Clake and Jakes channel\Clarke\Clarke.m
文件 939 2014-05-29 14:27 Clake and Jakes channel\Clarke\Clarke_model.m
文件 409 2014-05-29 14:32 Clake and Jakes channel\Clarke\Doppler.m
目录 0 2014-05-29 16:53 Clake and Jakes channel\Jakes\
文件 1258 2014-05-29 17:23 Clake and Jakes channel\Jakes\Jakes.asv
文件 1216 2014-05-29 17:29 Clake and Jakes channel\Jakes\Jakes.m
文件 809 2014-05-29 16:50 Clake and Jakes channel\Jakes\Jakes_model.m
相关资源
- Jakes
- LVRclass21
- CVPR10-LLC \“Locality-constrained Linear Cod
- FCM 模糊C均值聚类算法
- gaSVMcgForClass
- CLAHE 网上下的CLAHE的matlab程序
- pattern-classification 美国Richard O.Duda编著
- text-classification 分别使用最近邻(KN
- Pattern-Classification 此文档包含对卷积神
- BP-classification BP神经网络图像分类程序
- SVM-Classification Matlab写的SVM图像分类程
- text-classification matlab编写的文本分类的
- Sparse_Representations_classifier 一个常用的
- SVMcgForClass 利用网格搜索法对支持向量
- moulation_classification 主要是实现调制识
- psoSVMcgForClass.m
评论
共有 条评论