フィルターのクリア

How to extract the I and Q values from eye-diagram function into separate Variable?

6 ビュー (過去 30 日間)
I have .mat file of a signal and i get the eyediagram of that signal. when i look at the workspace its the 1x1Figure. but i need the values. How can i get it. I have attached the .mat file as well. Please assist
a = load("E:\Thesis\3 mod type\frame64APSK100.mat");
a1 = eyediagram(a.frame, 8);

採用された回答

yanqi liu
yanqi liu 2021 年 10 月 27 日
clc; clear all; close all
a = load("frame128APSK100.mat");
a1 = eyediagram(a.frame, 8);
a2=get(a1,'Children');
a3=get(a2(1),'Children');
[a3.XData; a3.YData]
a4=get(a2(2),'Children');
[a4.XData; a4.YData]
  25 件のコメント
john karli
john karli 2021 年 11 月 5 日
isn't the first rows are in phase quadrature?
yanqi liu
yanqi liu 2021 年 11 月 6 日
yes,sir,i think the first row may be the xtick vector for phase quadrature

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSpectral Measurements についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by