to get real data for the complex vector
조회 수: 2 (최근 30일)
이전 댓글 표시
i am trying to implement the qam modulated MIMO-OFDM system when i take the IFFT of the modulated data i am getting the complex valued signal . i have to get the integer valued after the IFFT is taken . how do i get the integer valued for the modulated signal by using IFFT . my code is given below
clc
M=16;
k=log2(M);
fft_size=64;
nsym=10000;
source=randi([0 1],1,nsym);
xsym=bi2de(reshape(source,k,length(source)/k).','left-msb').';
qam_mod=qammod(xsym,M);
sp=qam_mod.';
ifft_data=ifft(sp);
댓글 수: 0
답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 OFDM에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!