I want to change codes

2 ビュー (過去 30 日間)
Choi
Choi 2020 年 10 月 2 日
回答済み: Anavi Somani 2023 年 6 月 21 日
digMod1 = modulate(hmodem,x(Nt+1:Nt+Nobit,:));
digMod2 = modulate(hmodem,x(Nt+Nobit+1:Nt+2*Nobit,:));
bitb1 = demodulate(hdemodem,sqrt(42)*ytry(inth(1)));
bitb2 = demodulate(hdemodem,sqrt(42)*ytry(inth(2)));
How can i change in 2020 version??
  2 件のコメント
Steven Lord
Steven Lord 2020 年 10 月 2 日
Please don't start a new discussion thread for the same question as in your previous question. Add comments with more information to that previous question.
Choi
Choi 2020 年 10 月 3 日
Sorry, i was sensitive to know. i dont do it again

サインインしてコメントする。

回答 (1 件)

Anavi Somani
Anavi Somani 2023 年 6 月 21 日
Here is the updated code for the 2020 version:
digMod1 = hmodem.modulate(x(Nt+1:Nt+Nobit,:));
digMod2 = hmodem.modulate(x(Nt+Nobit+1:Nt+2*Nobit,:));
bitb1 = hdemodem.demodulate(sqrt(42)*ytry(inth(1)));
bitb2 = hdemodem.demodulate(sqrt(42)*ytry(inth(2)));
Try and see if it works!!

カテゴリ

Help Center および File ExchangeGet Started with MATLAB についてさらに検索

製品


リリース

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by