How to limit y-axis of eye-diagram?

2 ビュー (過去 30 日間)
Faheem Ur Rehman
Faheem Ur Rehman 2021 年 10 月 12 日
回答済み: Image Analyst 2021 年 10 月 12 日
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.

回答 (1 件)

Image Analyst
Image Analyst 2021 年 10 月 12 日
[2 0] is not "increasing numeric values". Try
ylim([0, 2]);

カテゴリ

Help Center および File ExchangeGet Started with MATLAB についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by