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 Center および File ExchangeBPSK についてさらに検索

製品


リリース

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by