📄 c3_lininterp.m
字号:
% File: c3_lininterp.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.
%
function h=c3_lininterp(M)
h1 = zeros(1,(M-1));
for j=1:(M-1)
h1(j) = j/M;
end
h = [0,h1,1,fliplr(h1),0];
% End of script file.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -