필터 지우기
필터 지우기

eye diagram measurements error

조회 수: 1 (최근 30일)
Muhammad Rizwan
Muhammad Rizwan 2020년 5월 5일
편집: Sandis Spolitis 2021년 1월 27일
HI I have query regarding eye diagram measurements.
I am trying to get the eye diagram measurements for my transmitter.
I get proper eye diagram but it never displays the measuemnets results on the right side of eye diagram.
WHAT CAN BE THE POSSIBLE REASON FOR THIS
  댓글 수: 1
Sandis Spolitis
Sandis Spolitis 2021년 1월 27일
편집: Sandis Spolitis 2021년 1월 27일
Hi!
You need to use the following lines for eye diagram object:
'DisplayMode','2D color histogram', ...
and
'OversamplingMethod','Input interpolation', ...
Also, make sure that your values are biased to zero (signal has no DC component). Fastest way to remove DC is:
DC=mean(data);
data=data-DC;
Eye plot example below:
eyeObj = comm.EyeDiagram('SampleRate', Fs,...
'SamplesPerSymbol', samples_per_bit, ...
'EnableMeasurements',true,'DisplayMode','2D color histogram', ...
'SymbolsPerTrace', 2, ...
'OversamplingMethod','Histogram interpolation', ...
'ColorScale','Linear', ... %Choose between Logarithmic / Linear
'ShowGrid',true,...
'YLimits',[1.1*min(data) 1.1*max(data)]);
set(gcf,'color','w');
eyeObj(data); %plot the eye with the above defined parameters
eyestats = measurements(eyeObj);

댓글을 달려면 로그인하십시오.

답변 (0개)

카테고리

Help CenterFile Exchange에서 Multirate Signal Processing에 대해 자세히 알아보기

태그

제품


릴리스

R2019b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by