⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ray2.m

📁 我的这个程序是用来进行信道中的信道估计的。里面包含有目前各种信道估计算法。
💻 M
字号:
function h=ray2(rol,delay,mul,support)% ==========================================================% function H=RAY2(rol,delay,mul,support);% ----------------------------------------------------------%% Creates a channel as a superposition of 2 scaled and% delayed raised-cosine pulses. The channel has the form:%% h(t) = [a(t,b) + mul*a(t-delay,b)]*w(t);%% where a(t,b) is a raised-cosine pulse with roll-off% factor b (0<b<1), and mul is a multiplicative constant.% w(t) is a rectangular window of length "support", that% truncates the length of the channel to "support" samples.% This is called a "two ray" multipath channel.%% Author: H. Pozidis,   September 23, 1998% ==========================================================h=rcosine(rol,0)+mul*rcosine(rol,delay);n=[1:5:201];   %  OVERSAMPLE BY 2h=h(n);k=[21-support:21+support-1];h=h(k);

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -