필터 지우기
필터 지우기

Related to QPSK signal in MATLAB

조회 수: 1 (최근 30일)
charu shree
charu shree 2023년 6월 23일
댓글: charu shree 2023년 6월 23일
How to produce QPSK signal s(n) such that n = 1,2,...,256 in MATLAB with an average transmit power P = 1.
Any help in this regard will be highly appreciated.

채택된 답변

Nikhil Baishkiyar
Nikhil Baishkiyar 2023년 6월 23일
As can be observed from the various sample graphs in pskmod documentation, the generated symbols have a magnitude of 1. So unless you are using a different basis function than the typical sine/cosine, it should already be providing you with a signal with an average transmit power of 1.
To get a signal of length 256, you can code it like this:
Mod = 4;
N = 256;
x_n = randi([0 Mod-1],N,1);
s_n = pskmod(x_n,Mod,pi/Mod);
  댓글 수: 1
charu shree
charu shree 2023년 6월 23일
Thank you so much sir for your response...

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 QPSK에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by