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.

BPSK code modified to ASK code, can anyone do this?

Status
Not open for further replies.

sht11help

Newbie level 6
Newbie level 6
Joined
Mar 20, 2007
Messages
13
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,377
bpsk code

I need to change this BPSK script made in Scilab to an ASK code and then again to QPSK code if possible, i been searching for hours trying to find answers.....

interp = 64;
bits = 2048;
data = rand(1, bits) > 0.5;
data1 = 2.*data - 1;
data2 = zeros(1, bits*interp);
for m = 1:interp,
data2(m:interp:bits*interp) = data1;
end
t=0:1/2:(bits*interp/2) - 1/2;
carrier = sin(t);
bpskwave = carrier.*data2;
plot(20*log(fft(bpskwave)/length(data2)))


Regards Arthur
 

scilab bpsk

Not really my forte, but I searched google for, "BPSK to ASK to QPSK". I got a lot of hits for Matlab. I don't know if the search would provide helpful links, but I wanted to suggest it to you, just in case. I'll keep looking if you want. Hope I can help.

Added after 23 seconds:

Would this help?

https://www.mathworks.com/matlabcentral/fileexchange/14410

Added after 1 minutes:

or this?

**broken link removed**

Added after 1 minutes:

and here is a link to an IEEE paper:

**broken link removed**

Added after 3 minutes:

this is a powerpoint presentation:

https://www.ece.uvic.ca/~peter/35008/c2e2com2.ppt
 

explain modified bpsk in detail

ok thanks
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top