BPSK modulation and Raised Cosine Filtering

조회 수: 6 (최근 30일)
Martin Bahna
Martin Bahna 2020년 4월 11일
댓글: wahidin syahrir 2023년 2월 7일
I have problem with this code:
data = randi([0 1],40,1);
bpskModulator = comm.BPSKModulator;
bpskModulator.PhaseOffset = pi/4;
modData = bpskModulator(data);
scatterplot(modData)
modData = step(bpskModulator, data);
throwing error "Unable to resolve the name comm.BPSKModulator."
any help please?
  댓글 수: 1
wahidin syahrir
wahidin syahrir 2023년 2월 7일
add "coder.extrinsic('comm.BPSKModulator')"

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

답변 (1개)

Rahul Narendra Shanbhag
Rahul Narendra Shanbhag 2020년 6월 18일
Hi Martin,
From what I have understood, your issue seems to be the presence of the following error: “Unable to resolve the name comm.BPSKModulator”. The issue you are facing is usually caused by a path error, where the object is unable to access the correct path. Run the following commands in MATLAB in the following order
restoredefaultpath
savepath
After executing these commands, restart MATLAB.
I hope your issue gets resolved.
Thanks

카테고리

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

제품


릴리스

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by