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.

How ASK is implemented in MATLAB?

Status
Not open for further replies.

zeb.waqas

Banned
Joined
Aug 6, 2007
Messages
5
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
0
regards!!!
how ASK is implemented in MATLAB..........
 

Re: help for ASK

Hi
zeb.waqas said:
regards!!!
how ASK is implemented in MATLAB..........

where in Matlab, would you be more precise in what you want?

ASK works as follows:

- take sine wave at RF (Radio Frequency - high frequency)
- take the digital data (like square wave) where logical "1" is equal to 1; logical "0" is equal to 0
- multiplicate them

On the output you will have a slide of RF sine wave each time when logical "1" is sended/transmitted, and nothing when logical "0" i sended/transmitted

That's all. I hope it helps
Regards
 

Re: help for ASK

Hi
First ASK works as follows:
If the data is 0 then the ouput after ask will be 0
If the data is 1 then the ouput will be the same as the carrier.
So simply the matlab code will be:
f=1*10^6; as an example
t=1;
x=sin(2*pi*f*t);
source=randint(1,128);
y=x*source;
 

Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top