Effacer les filtres
Effacer les filtres

Plot I vs Q using complex matrix dataset

8 vues (au cours des 30 derniers jours)
sri ram
sri ram le 5 Fév 2021
I want to plot I (inphase) vs Q (quadrature) graph using 128*256 complex dataset. The dataset is attached(M2.mat). What is the shape of the graph? Please share the code.
  2 commentaires
darova
darova le 5 Fév 2021
What about surf?
Maximilian Schönau
Maximilian Schönau le 5 Fév 2021
Modifié(e) : Maximilian Schönau le 5 Fév 2021
how do you want the komplex data be displayed? You need four dimensions to plot a 2d matrix of complex and therefor 2d numbers

Connectez-vous pour commenter.

Réponses (1)

Pratheek Punchathody
Pratheek Punchathody le 12 Fév 2021
Modifié(e) : Pratheek Punchathody le 5 Avr 2021
As per my understanding you want to plot I and Q from the complex signal mentioned in M2.mat.
Following piece of code will help to achieve it.
load M2.mat; %load the M2 file to the workspace
I = real(M2);
Q = imag(M2);
figure; hAxes = gca;
plot( hAxes, I );
hold( hAxes, 'on' );
plot( hAxes, Q, '--' );
Hope this helps

Community Treasure Hunt

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

Start Hunting!

Translated by