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.

urgent help how to plot eye diagram

Status
Not open for further replies.

syed_brunel

Newbie level 6
Joined
Jul 20, 2009
Messages
13
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Location
uk
Activity points
1,387
eye diagram

i would like to know that how to plot my signal in the form of eye diagram , if i dnt want to use any toolbox, i have found command on matlab
% Create an eye diagram scope object
h = commscope.eyediagram;
% Prepare a noisy sinusoid as input
x = awgn(0.5*sin(2*pi*(0:1/100:10))+ ...
j*0.5*cos(2*pi*(0:1/100:10)), 20);
% Update the eye diagram
update(h, x);
% Display the eye diagram figure
plot(h)

but if u see that the plotting is only for the h , if i have a signal how can i show it in the form of eye diagram.

your early response will be highly appreciated.

Syed@edaboard

------------------
 

diagram of the eye

Just plot all the simbols on the same plot (hold on) in pairs. That is, you plot first two simbols, then on top of them next two etc.
 

how to plot eye diagram in matlab

i didnt get u mate .. will you clearify this
 

eye diagram

syed_brunel said:
i didnt get u mate .. will you clearify this

Of course.
Well you basically transfer symbols (each carrying N number of bits) through you're comm. channel, OK ?

So, what you wanna see is how symbols overlap when you draw a bunch of them on top of each other, right?

So, you plot first two symbols on a graph. You make sure that plot "hold on" is active and then you plot next 2 symbols on the same plot and so on. Whola, this is you're eye diagram.

The eye diagram is constructed by overlaying plots of the waveform from successive unit time intervals.
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top