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

5 次查看(过去 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 中查找有关 Line Plots 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by