Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Does any one have QAM,QPSK,BPSK, etc...Matlab codes

Status
Not open for further replies.

Raghuvij

Newbie level 1
Newbie level 1
Joined
Sep 3, 2006
Messages
1
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,309
qpsk matlab code

hello,
Hey friends.. I need Matlab code for digital modulation techniques... like ASK, PSK, BPSK, DPSK, QAM, QPSK, etc... If you have that, Please post that...



Advance tnxs to you
 

oister

Member level 2
Member level 2
Joined
Nov 2, 2008
Messages
50
Helped
2
Reputation
4
Reaction score
1
Trophy points
1,288
Activity points
1,580
bpsk matlab

qpsk n bpsk.....
 

Aya2002

Advanced Member level 4
Advanced Member level 4
Joined
Dec 12, 2006
Messages
1,140
Helped
184
Reputation
376
Reaction score
117
Trophy points
1,343
Location
Iraq
Activity points
8,006
qpsk with matlab code

see the attached

by the way
there are many others on matlab file center
 

mashhur

Member level 5
Member level 5
Joined
Jan 21, 2009
Messages
91
Helped
6
Reputation
12
Reaction score
4
Trophy points
1,288
Activity points
1,863
matlab qam

Did you have Matlab 7.5 version, there are also some default examples for modulation techniques and even IEEE 802.16 d 2004 WiMAX simulink is exist. (go->help->just type qam or qpsk..)

Enjoy!
 

Aya2002

Advanced Member level 4
Advanced Member level 4
Joined
Dec 12, 2006
Messages
1,140
Helped
184
Reputation
376
Reaction score
117
Trophy points
1,343
Location
Iraq
Activity points
8,006
qpsk matlab

Hi mashhur
not only matlab 7.5 have these examples
the other versions includes many examples

thank you for your reply
 

jakjoud

Full Member level 2
Full Member level 2
Joined
Feb 6, 2005
Messages
129
Helped
10
Reputation
20
Reaction score
1
Trophy points
1,298
Location
Marrakech
Activity points
954
bpsk vs qam

Please can I find some source code about ADSL modem I need to have some source code please.

Thanks a lot friends
 

sathish2610

Junior Member level 1
Junior Member level 1
Joined
Feb 2, 2009
Messages
18
Helped
1
Reputation
2
Reaction score
1
Trophy points
1,283
Activity points
1,359
matlab coding for qpsk

i have attached some matlab tool box
 

sathish2610

Junior Member level 1
Junior Member level 1
Joined
Feb 2, 2009
Messages
18
Helped
1
Reputation
2
Reaction score
1
Trophy points
1,283
Activity points
1,359
64 qam program in matlab

i need the matlab to generate 64 qam and also to convert 64 qam to 16qam
 

Aya2002

Advanced Member level 4
Advanced Member level 4
Joined
Dec 12, 2006
Messages
1,140
Helped
184
Reputation
376
Reaction score
117
Trophy points
1,343
Location
Iraq
Activity points
8,006
mat lab code for qam

Hi freind,
you can not convert between them as i know but you can demodulate at 64 and then modulate at 16.
 

    V

    Points: 2
    Helpful Answer Positive Rating

aarr

Newbie level 4
Newbie level 4
Joined
Mar 6, 2009
Messages
5
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,303
qpsk coding matlab

thanks alot
if you have any thing new in matlab as a simple projects or aplication plese send me at aarrwnas@yahoo.com
 

Aya2002

Advanced Member level 4
Advanced Member level 4
Joined
Dec 12, 2006
Messages
1,140
Helped
184
Reputation
376
Reaction score
117
Trophy points
1,343
Location
Iraq
Activity points
8,006
spatial multiplexing matlab code

Hi aarr,
I just sent you an invitation, see your yahoo inbox
 

apollon

Newbie level 1
Newbie level 1
Joined
Mar 8, 2009
Messages
1
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,284
matlab program for generating qpsk

hi
i want matlab code with comparison of Systems 8-PSK and 8-FSK it is easy my friends?
 

sathish2610

Junior Member level 1
Junior Member level 1
Joined
Feb 2, 2009
Messages
18
Helped
1
Reputation
2
Reaction score
1
Trophy points
1,283
Activity points
1,359
qpsk project

Hi AYa2002,

thank u for ur reply..

i am doing the project based on repeater...

while i am working,i need the program to convert 16 qam to 4qam...

as u said it can be converted through 16 qam to baseband and then to 4qam..

can u send the matlab code for the above conversation AYA
so that i can continue in my project based on repeater.....
 

Aya2002

Advanced Member level 4
Advanced Member level 4
Joined
Dec 12, 2006
Messages
1,140
Helped
184
Reputation
376
Reaction score
117
Trophy points
1,343
Location
Iraq
Activity points
8,006
matlab code bpsk

my freind if you know how to do the psk modulation using modem object in matlab and the modulate method. you can see the program that i posted in the following link and you can modify it to your requist.



Thanks
 

haimap12

Newbie level 4
Newbie level 4
Joined
May 14, 2009
Messages
5
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,301
matlab code for qam

any one has a code matlan in QPSK modulation and demodulation? if you have file *.m, that is better....could you send for me via quanghaidv04@yahoo.com
 

Aya2002

Advanced Member level 4
Advanced Member level 4
Joined
Dec 12, 2006
Messages
1,140
Helped
184
Reputation
376
Reaction score
117
Trophy points
1,343
Location
Iraq
Activity points
8,006
code matlab bpsk

clc;
clear all;
disp('M-Array PSK Modulation')
%create a random digital message
M=input ('M= '); %alphabet size
x=randint(input('Number of binary bit stream = '),1,M);
nsample=40; %oversampling rate.
%%

%%
%use M-PSK modulation to produce y
y=modulate(modem.pskmod(M),x);
%%
%follow with rectangular pulse shaping.
ypulse=rectpulse(y,nsample);
stem(y(1:10),'filled'),grid;
%%
%%transmit signal through an AWGN Channel
ynoisy=awgn(ypulse,input('SNR in dB = '),'measured');
%%
%Create scattet plot from noisy data
scatterplot(ynoisy),grid;
%%
%Downsample at the reciever.
ydownsample=intdump(ynoisy,nsample);
%%
%Demodulate ynoisy to recover the message.
z=demodulate(modem.pskdemod(M),ydownsample);
figure;
subplot(2,1,1);
stem(x(1:10),'filled'),grid;
subplot(2,1,2);
stem(z(1:10),'filled'),grid;
%%
%Check symbole erroe rate.
[num ty]=symerr(x,z)
 

mazdaspring

Advanced Member level 4
Full Member level 1
Joined
Feb 18, 2008
Messages
108
Helped
4
Reputation
8
Reaction score
3
Trophy points
1,298
Activity points
2,030
coding of qam in matlab

Hi Aya,

Do you have Spatial multiplexing matlab code and Space time block coding matlab code? I really need it. I could find some STBC code on google but it's not complete, not working. Please provide me if you have.

Also do you know anything about precoding?
 

Aya2002

Advanced Member level 4
Advanced Member level 4
Joined
Dec 12, 2006
Messages
1,140
Helped
184
Reputation
376
Reaction score
117
Trophy points
1,343
Location
Iraq
Activity points
8,006
matlab source code for qpsk modulation

I am so sorry my friend, I do not have it
 

Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Top