필터 지우기
필터 지우기

need syntax

조회 수: 2 (최근 30일)
shriya
shriya 2012년 2월 29일
need syntax for adding and removing cyclic prefix
  댓글 수: 2
Oleg Komarov
Oleg Komarov 2012년 2월 29일
http://www.mathworks.com/matlabcentral/answers/6200-tutorial-how-to-ask-a-question-on-answers-and-get-a-fast-answer
Walter Roberson
Walter Roberson 2012년 2월 29일
See also Sana's identical question,
http://www.mathworks.com/matlabcentral/answers/30436-how-to-add-cyclic-prefix-i-want-codings-to-add-it

댓글을 달려면 로그인하십시오.

채택된 답변

UJJWAL
UJJWAL 2012년 2월 29일
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

추가 답변 (0개)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by