📄 c5_rcosdemo.m
字号:
% File: c5_rcosdemo.m
% Software given here is to accompany the textbook: W.H. Tranter,
% K.S. Shanmugan, T.S. Rappaport, and K.S. Kosbar, Principles of
% Communication Systems Simulation with Wireless Applications,
% Prentice Hall PTR, 2004.
%
k = 10; % samples per symbol
m = 4; % delay
beta = 0.32; % bandwidth factor
h = rcos(k,m,beta); % impulse response
in = zeros(1,101); in(11) = 1; % input
out = conv(in,h); % output
t = 0:0.1:10; % time vector for plot
stem(t,out(1:101),'.') % plot output
grid
xlabel('Time')
ylabel('Amplitude')
% End of script file.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -