?? shift_ifft.m
字號:
% File: shift_ifft.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 y = shift_ifft(x,n)
% Circular shift ifft array
for k=1:(n/2)-1
y(k)=x((n/2)+k+1);
end
for k=1:n/2+1
y((n/2)-1+k)=x(k);
end
% End of function file.
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -