필터 지우기
필터 지우기

How to generate 1000 bit with QPSK

조회 수: 10 (최근 30일)
Dini
Dini 2012년 10월 9일
편집: Ved 2013년 10월 27일
How can I generate 1000 bit +1 and -1 equiprobably then msp into QPSK symbol? Which 1 QPSK symbol brings 2 bit. What should I do? Thank you...

답변 (1개)

Ved
Ved 2013년 10월 27일
편집: Ved 2013년 10월 27일
To generate equiprobable 0s and 1s,use either one:
rand(1,1000)>.5 % generate almost equiprobable 1x1000 logical array of 0s & 1s
randi([0 1],1,1000) % 1x1000 double array of almost equiprobable 0s & 1s
and to map data to 4-ary PSK,either use "pskmod" or "comm.PSKModulator"
Type this into command window to get more insight.
help pskmod % its an obsolete function
help comm.PSKModulator % new function

카테고리

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