Plot I vs Q using complex matrix dataset

조회 수: 8 (최근 30일)
sri ram
sri ram 2021년 2월 5일
편집: Pratheek Punchathody 2021년 4월 5일
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
darova
darova 2021년 2월 5일
What about surf?
Maximilian Schönau
Maximilian Schönau 2021년 2월 5일
편집: Maximilian Schönau 2021년 2월 5일
how do you want the komplex data be displayed? You need four dimensions to plot a 2d matrix of complex and therefor 2d numbers

댓글을 달려면 로그인하십시오.

답변 (1개)

Pratheek Punchathody
Pratheek Punchathody 2021년 2월 12일
편집: Pratheek Punchathody 2021년 4월 5일
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

카테고리

Help CenterFile Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by