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.

Generate baseband signal

Status
Not open for further replies.

makis0987

Newbie level 5
Joined
Feb 29, 2008
Messages
9
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,340
baseband signal

Can anyone give me simple matlab code which generates a baseband signal?
 

matlab code for generating a bandlimited signal

what type of signal you want to generate ?? and for which application it is??

The most common one is:
Fs=1e3; %Sampling Frequency
t=(0:Fs)'/Fs; % Time vector
f=30; %Frequency
x=sin(2*pi*f*t); % Baseband signal
plot(t,x);grid on;

HTH,
Ashwini
:D
 

what is a baseband signal?

Hi!
What do you mean by “base band”?
If you mean the “simplest band limited signal” (SBLS) that means to generate a signal with two spectral components., e.g:
A = Am*sin(w*t+phi)+B
They are:
* “the constant signal” sometimes associated with “direct current” and with frequency 0Hz.(B = constant)
* sinusoidal or co-sinusoidal component with determined function, amplitude, frequency and phase, sometimes called” alternative current” component.
If you do not mean SBLS you should give the formula of your “base band signal”.
But normally a “band” means at least two frequency components? OK?
I hope that I clear and useful.
BR
 

generate a baseband signal

requirements for generating base band signals?
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top