필터 지우기
필터 지우기

encoder and decoder design using ldpc

조회 수: 1 (최근 30일)
ABDUL
ABDUL 2020년 1월 24일
답변: Walter Roberson 2020년 1월 27일
hi.....
i am trying to encode the data by using dvbs2ldpc , i am getting the error message "Inner matrix dimensions must agree." my sample code is given
M = 4; % QPSK signal constellatio
fft_size = 64; % have 128 data point
fspacing=15000;
fs=15000*64;
Ts = 1/fs; % Sampling period of channel
Fd = 0; % Max Doppler frequency shift
nsym = 100;
source_user_1 = randsrc(1, fft_size*(nsym-2), 0:M-1); %the data source
henc=dvbs2ldpc(1/2);
data_encoded=source_user_1*henc;
also how i do modify the size of the parity check matrix of an ldpc encoder and decoder by using dvbs2ldpc.
  댓글 수: 1
Image Analyst
Image Analyst 2020년 1월 26일
What is the size of source_user_1 and henc? Evidently the number of columns in source_user_1 does not equal the number of rows in henc.
whos source_user_1
whos henc

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

채택된 답변

Walter Roberson
Walter Roberson 2020년 1월 27일
You cannot modify the size of the matrix returned by that function.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Link-Level Simulation에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by