Azzera filtri
Azzera filtri

How to limit y-axis of eye-diagram?

3 visualizzazioni (ultimi 30 giorni)
Faheem Ur Rehman
Faheem Ur Rehman il 12 Ott 2021
Risposto: Image Analyst il 12 Ott 2021
I have attached the image in which i don't need whole plot but only the signal areas.
x = load (['frame_snr30256QAM' num2str(i) '.mat']);
sps = 8;
eyediagram(abs(x.frame),sps)
%set(get(gcf, 'Children'), 'Visible', 'off')
ylim([2 0])
error
Error using ylim (line 31)
Limits must be a 2-element vector of increasing numeric values.

Risposte (1)

Image Analyst
Image Analyst il 12 Ott 2021
[2 0] is not "increasing numeric values". Try
ylim([0, 2]);

Categorie

Scopri di più su Image Processing Toolbox in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by