how to plot complex signal from i(inphase) q(Quadrature phase) values in matlab?

조회 수: 10 (최근 30일)
I had I and Q values.
I=[2.35 5.637.......]
Q=[3.656 1.3667.....]
I want to plot complex signal with this I and Q value.
How to find this?

채택된 답변

Adam
Adam 2017년 2월 8일
figure; hAxes = gca;
plot( hAxes, I )
hold( hAxes, 'on' )
plot( hAxes, Q, '--' )

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Annotations에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by