MATLAB: Need syntax

doit4meprefixremove

need syntax for adding and removing cyclic prefix

Best Answer

Hi, Since you mentioned that you just have to add the cyclic prefix, I am writing a code to add the cyclic prefix. The code can be shortened further. I have written in this way just for step-by-step illustration.
clc;
clear all;
length_message = 100;
message = randint(1,length_message,4); %Assuming QPSK symbols
length_cyclic = 20;
starting = length_message - length_cyclic + 1;
cyclic_prefix = message(starting : end);
prefixed = horzcat(cyclic_prefix,message);
The removal of Prefix I leave on you. It is quite elementary and involves just matrix indexing. Accept the answer if you find it useful