📄 prefix.m
字号:
function out=prefix(input,L)
%%% This function copy the last L points of inputed sequence to the head of this sequence
%%% input---Inputed sequence, and is parallel sequence
%%% L--- The length of cyclic prefix, or the number of cyclic prefix points
K=length(input);
p_out=[input(K-L+1:K)
input];
out=p_out; %%% The output is also parallel sequence
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -