Azzera filtri
Azzera filtri

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

6 visualizzazioni (ultimi 30 giorni)
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);

Risposta accettata

yanqi liu
yanqi liu il 27 Ott 2021
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 Commenti
yanqi liu
yanqi liu il 6 Nov 2021
yes,sir,i think the first row may be the xtick vector for phase quadrature

Accedi per commentare.

Più risposte (0)

Community Treasure Hunt

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

Start Hunting!

Translated by