SlideShare une entreprise Scribd logo
1  sur  3
Télécharger pour lire hors ligne
RECEIVER SIDE COMPONENTS DESCRIPTION (SAMPLE ASSIGNMENT)
Our online Tutors are available 24*7 to provide Help with Help with Receiver Side
Components Description Homework/Assignment or a long term
Graduate/Undergraduate Help with Receiver Side Components Description Project. Our
Tutors being experienced and proficient in Help with Receiver Side Components
Description ensure to provide high quality Help with Receiver Side Components
Description Homework Help. Upload your Help with Receiver Side Components
Description Assignment at ‘Submit Your Assignment’ button or email it
to . You can use our ‘Live Chat’ option to
schedule an Online Tutoring session with our Help with Receiver Side Components
Description Tutors.
Generalized OFDM transmission model
This sample assignment shows OFDM transmission system with channel effects
Generalized_OFDM_transmission_model.m
%% The matlab code given below is made by Bhavik Doshi, Email for any queries at
bhavik.d007@gmail.com
%% This just for testing purpose and all rights are reserved.
clc;
close all;
clear all;
fd=10; % maximum Doppler shift considering 5km/hr speed of moment
ts=1e-2; % Input sample period
h=rayleighchan(ts,fd);
sym=1000;
snr=50;
time=2;
col=['r' 'g' 'b'];
M=[16 64 256];
for mm=1:length(M) %% Making Generalise for multi point modulation
msg=randi([1 M(mm)-1],sym,1);
MMMM = comm.RectangularQAMModulator(M(mm));
MMMM.NormalizationMethod = 'Average Power';
MMMM.AveragePower=250;
modData = step(MMMM,msg);
mod=transpose(modData);
msgln=length(mod);
dftpnt=64; %% FFT hardware capacity
ppt=dftpnt-12; %% Removing 12 points as per IEEE 802.11a standards
info@assignmentpedia.com
it=ceil(msgln/ppt); %% Defining itration required to transmit singal
for i=1:it
if(msgln<i*ppt)
add=(i*ppt)-msgln; %% Logic is to make num. of msg signals exactly divisible by 52,
and if not, number of zeros to be padded is calulated
end
end
mod1=[mod zeros(1,add)]; %% Finally adding required dummy 0 symbols to make total
msg sym number divisible by 52.
for i=1:it
block(i,1:ppt)=mod1(((ppt*(i-1))+1):(ppt*i)); %% Dividing Information in blocks of 52
end
for i=1:it
xx=[zeros(1,6) block(i,1:ppt) zeros(1,6)]; %% adding 6 + 52 + 6 = 64 bits ready for idft
operation
tx11((dftpnt*(i-1)+1):(64*i))=ifft(xx,dftpnt); %% Parallel to Serial converter ready to tx
end
%% adding mimo effects
y=h.PathGains*tx11;
%% End of transmitter ......
%% Over the air and part of reciever ....
for tim=1:time
for ss=1:snr
yn=awgn(y,ss);
fin=yn/h.PathGains; %% Assuming channel estimations are known
for i=1:it
rx(i,1:dftpnt)=fin((dftpnt*(i-1)+1):dftpnt*i); %% Serial Received data converted into block.
Each block contains 64 parallel data.
rec=fft(rx(i,1:dftpnt),dftpnt); %% Each block is computed fft, block is made up of 64
Parallel data only, not more or less.
rec11(i,1:ppt)=rec(7:58); %%Band pass Filter which removes information 0 to 6 and 59 to
64 (reason for sending info only on 52 points)
end
[d1 d2]=size(rec11); %% d1 is calculated because it might be possible that receiver might
not have info of total tx bits.
for i=1:d1
rx111(ppt*(i-1)+1:ppt*i)=rec11(i,1:ppt); %% Coverting parallel data from all 52 symbol
blocks to serial
end
l2=length(rx111);
rx11122=rx111(1:(l2-add));
%% Removing dummy symbols added, this info rx should know from tx
mrec=comm.RectangularQAMDemodulator(M(mm));
mrec.NormalizationMethod = 'Average Power';
mrec.AveragePower=250;
mrec1 = step(mrec,transpose(rx11122));
%% Demodulating to make equivalant original transmitted Symbols
[n1(ss+1) r1(ss+1)]=biterr(msg,mrec1);
end
nfin(tim,1:snr+1)=r1;
end
ffin=sum(nfin)/time;
semilogy(0:snr,ffin,col(mm));
grid on
hold on
end
legend('16-QAM','64-QAM','256-QAM');
xlabel('SNR in dB');
ylabel('BER');
title('OFDM Transmission System');
visit us at www.assignmentpedia.com or email us at info@assignmentpedia.com or call us at +1 520 8371215

Contenu connexe

Plus de Assignmentpedia

Parallel computing homework help
Parallel computing homework helpParallel computing homework help
Parallel computing homework helpAssignmentpedia
 
Network costing analysis
Network costing analysisNetwork costing analysis
Network costing analysisAssignmentpedia
 
Matlab simulation project
Matlab simulation projectMatlab simulation project
Matlab simulation projectAssignmentpedia
 
Matlab programming project
Matlab programming projectMatlab programming project
Matlab programming projectAssignmentpedia
 
Image processing project using matlab
Image processing project using matlabImage processing project using matlab
Image processing project using matlabAssignmentpedia
 
Help with root locus homework1
Help with root locus homework1Help with root locus homework1
Help with root locus homework1Assignmentpedia
 
Computer Networks Homework Help
Computer Networks Homework HelpComputer Networks Homework Help
Computer Networks Homework HelpAssignmentpedia
 
Theory of computation homework help
Theory of computation homework helpTheory of computation homework help
Theory of computation homework helpAssignmentpedia
 
Econometrics Homework Help
Econometrics Homework HelpEconometrics Homework Help
Econometrics Homework HelpAssignmentpedia
 
Help With Digital Communication Project
Help With  Digital Communication ProjectHelp With  Digital Communication Project
Help With Digital Communication ProjectAssignmentpedia
 
Filter Implementation And Evaluation Project
Filter Implementation And Evaluation ProjectFilter Implementation And Evaluation Project
Filter Implementation And Evaluation ProjectAssignmentpedia
 
Doppler Processing Project
Doppler Processing ProjectDoppler Processing Project
Doppler Processing ProjectAssignmentpedia
 
Distributed Radar Tracking Simulation Project
Distributed Radar Tracking Simulation ProjectDistributed Radar Tracking Simulation Project
Distributed Radar Tracking Simulation ProjectAssignmentpedia
 
Distributed Radar Tracking Simulation Project
Distributed Radar Tracking Simulation ProjectDistributed Radar Tracking Simulation Project
Distributed Radar Tracking Simulation ProjectAssignmentpedia
 

Plus de Assignmentpedia (20)

Parallel computing homework help
Parallel computing homework helpParallel computing homework help
Parallel computing homework help
 
Network costing analysis
Network costing analysisNetwork costing analysis
Network costing analysis
 
Matlab simulation project
Matlab simulation projectMatlab simulation project
Matlab simulation project
 
Matlab programming project
Matlab programming projectMatlab programming project
Matlab programming project
 
Links design
Links designLinks design
Links design
 
Image processing project using matlab
Image processing project using matlabImage processing project using matlab
Image processing project using matlab
 
Help with root locus homework1
Help with root locus homework1Help with root locus homework1
Help with root locus homework1
 
Transmitter subsystem
Transmitter subsystemTransmitter subsystem
Transmitter subsystem
 
Computer Networks Homework Help
Computer Networks Homework HelpComputer Networks Homework Help
Computer Networks Homework Help
 
Theory of computation homework help
Theory of computation homework helpTheory of computation homework help
Theory of computation homework help
 
Econometrics Homework Help
Econometrics Homework HelpEconometrics Homework Help
Econometrics Homework Help
 
Video Codec
Video CodecVideo Codec
Video Codec
 
Radar Spectral Analysis
Radar Spectral AnalysisRadar Spectral Analysis
Radar Spectral Analysis
 
Pi Controller
Pi ControllerPi Controller
Pi Controller
 
Help With Digital Communication Project
Help With  Digital Communication ProjectHelp With  Digital Communication Project
Help With Digital Communication Project
 
Fpga Design Project
Fpga Design ProjectFpga Design Project
Fpga Design Project
 
Filter Implementation And Evaluation Project
Filter Implementation And Evaluation ProjectFilter Implementation And Evaluation Project
Filter Implementation And Evaluation Project
 
Doppler Processing Project
Doppler Processing ProjectDoppler Processing Project
Doppler Processing Project
 
Distributed Radar Tracking Simulation Project
Distributed Radar Tracking Simulation ProjectDistributed Radar Tracking Simulation Project
Distributed Radar Tracking Simulation Project
 
Distributed Radar Tracking Simulation Project
Distributed Radar Tracking Simulation ProjectDistributed Radar Tracking Simulation Project
Distributed Radar Tracking Simulation Project
 

Dernier

UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfUGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfNirmal Dwivedi
 
Single or Multiple melodic lines structure
Single or Multiple melodic lines structureSingle or Multiple melodic lines structure
Single or Multiple melodic lines structuredhanjurrannsibayan2
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17Celine George
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.pptRamjanShidvankar
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...Poonam Aher Patil
 
Graduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - EnglishGraduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - Englishneillewis46
 
How to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptxHow to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptxCeline George
 
SOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning PresentationSOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning Presentationcamerronhm
 
Google Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptxGoogle Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptxDr. Sarita Anand
 
Towards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptxTowards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptxJisc
 
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...Nguyen Thanh Tu Collection
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfAdmir Softic
 
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...Pooja Bhuva
 
Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Jisc
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...Nguyen Thanh Tu Collection
 
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...pradhanghanshyam7136
 
Fostering Friendships - Enhancing Social Bonds in the Classroom
Fostering Friendships - Enhancing Social Bonds  in the ClassroomFostering Friendships - Enhancing Social Bonds  in the Classroom
Fostering Friendships - Enhancing Social Bonds in the ClassroomPooky Knightsmith
 
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptxHMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptxEsquimalt MFRC
 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSCeline George
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfPoh-Sun Goh
 

Dernier (20)

UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfUGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
 
Single or Multiple melodic lines structure
Single or Multiple melodic lines structureSingle or Multiple melodic lines structure
Single or Multiple melodic lines structure
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.ppt
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...
 
Graduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - EnglishGraduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - English
 
How to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptxHow to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptx
 
SOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning PresentationSOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning Presentation
 
Google Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptxGoogle Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptx
 
Towards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptxTowards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptx
 
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
 
Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
 
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
 
Fostering Friendships - Enhancing Social Bonds in the Classroom
Fostering Friendships - Enhancing Social Bonds  in the ClassroomFostering Friendships - Enhancing Social Bonds  in the Classroom
Fostering Friendships - Enhancing Social Bonds in the Classroom
 
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptxHMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POS
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdf
 

Receiver side components description

  • 1. RECEIVER SIDE COMPONENTS DESCRIPTION (SAMPLE ASSIGNMENT) Our online Tutors are available 24*7 to provide Help with Help with Receiver Side Components Description Homework/Assignment or a long term Graduate/Undergraduate Help with Receiver Side Components Description Project. Our Tutors being experienced and proficient in Help with Receiver Side Components Description ensure to provide high quality Help with Receiver Side Components Description Homework Help. Upload your Help with Receiver Side Components Description Assignment at ‘Submit Your Assignment’ button or email it to . You can use our ‘Live Chat’ option to schedule an Online Tutoring session with our Help with Receiver Side Components Description Tutors. Generalized OFDM transmission model This sample assignment shows OFDM transmission system with channel effects Generalized_OFDM_transmission_model.m %% The matlab code given below is made by Bhavik Doshi, Email for any queries at bhavik.d007@gmail.com %% This just for testing purpose and all rights are reserved. clc; close all; clear all; fd=10; % maximum Doppler shift considering 5km/hr speed of moment ts=1e-2; % Input sample period h=rayleighchan(ts,fd); sym=1000; snr=50; time=2; col=['r' 'g' 'b']; M=[16 64 256]; for mm=1:length(M) %% Making Generalise for multi point modulation msg=randi([1 M(mm)-1],sym,1); MMMM = comm.RectangularQAMModulator(M(mm)); MMMM.NormalizationMethod = 'Average Power'; MMMM.AveragePower=250; modData = step(MMMM,msg); mod=transpose(modData); msgln=length(mod); dftpnt=64; %% FFT hardware capacity ppt=dftpnt-12; %% Removing 12 points as per IEEE 802.11a standards info@assignmentpedia.com
  • 2. it=ceil(msgln/ppt); %% Defining itration required to transmit singal for i=1:it if(msgln<i*ppt) add=(i*ppt)-msgln; %% Logic is to make num. of msg signals exactly divisible by 52, and if not, number of zeros to be padded is calulated end end mod1=[mod zeros(1,add)]; %% Finally adding required dummy 0 symbols to make total msg sym number divisible by 52. for i=1:it block(i,1:ppt)=mod1(((ppt*(i-1))+1):(ppt*i)); %% Dividing Information in blocks of 52 end for i=1:it xx=[zeros(1,6) block(i,1:ppt) zeros(1,6)]; %% adding 6 + 52 + 6 = 64 bits ready for idft operation tx11((dftpnt*(i-1)+1):(64*i))=ifft(xx,dftpnt); %% Parallel to Serial converter ready to tx end %% adding mimo effects y=h.PathGains*tx11; %% End of transmitter ...... %% Over the air and part of reciever .... for tim=1:time for ss=1:snr yn=awgn(y,ss); fin=yn/h.PathGains; %% Assuming channel estimations are known for i=1:it rx(i,1:dftpnt)=fin((dftpnt*(i-1)+1):dftpnt*i); %% Serial Received data converted into block. Each block contains 64 parallel data. rec=fft(rx(i,1:dftpnt),dftpnt); %% Each block is computed fft, block is made up of 64 Parallel data only, not more or less. rec11(i,1:ppt)=rec(7:58); %%Band pass Filter which removes information 0 to 6 and 59 to 64 (reason for sending info only on 52 points) end [d1 d2]=size(rec11); %% d1 is calculated because it might be possible that receiver might not have info of total tx bits. for i=1:d1 rx111(ppt*(i-1)+1:ppt*i)=rec11(i,1:ppt); %% Coverting parallel data from all 52 symbol blocks to serial end l2=length(rx111); rx11122=rx111(1:(l2-add)); %% Removing dummy symbols added, this info rx should know from tx mrec=comm.RectangularQAMDemodulator(M(mm)); mrec.NormalizationMethod = 'Average Power';
  • 3. mrec.AveragePower=250; mrec1 = step(mrec,transpose(rx11122)); %% Demodulating to make equivalant original transmitted Symbols [n1(ss+1) r1(ss+1)]=biterr(msg,mrec1); end nfin(tim,1:snr+1)=r1; end ffin=sum(nfin)/time; semilogy(0:snr,ffin,col(mm)); grid on hold on end legend('16-QAM','64-QAM','256-QAM'); xlabel('SNR in dB'); ylabel('BER'); title('OFDM Transmission System'); visit us at www.assignmentpedia.com or email us at info@assignmentpedia.com or call us at +1 520 8371215