Sub carrier mapping and IFFT signal formation
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Darshan Manjunathrao Chawan
am 31 Mai 2020
Beantwortet: Chaitanya Mallela
am 20 Aug. 2020
clc;clear all;close all;
input=[1 1 0 1 0 0 1 0 ]; %input bit
M=4;
Nsc=148;
N = 2;
X = bin2dec(reshape(sprintf('%u',input),N,[]).'); %bin2dec conversion
y=qammod(X,M);
scatterplot(y); %QAM modulation
This is my code. I don't know how to do subcarrier mapping and finally I have to generate IFFT signal after mapping. Can someone help me with this?
0 Kommentare
Antworten (1)
Siehe auch
Kategorien
Mehr zu OFDM finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!