필터 지우기
필터 지우기

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 CenterFile Exchange에서 Get 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