MATLAB: How to plot complex signal from i(inphase) q(Quadrature phase) values in matlab

complex signal

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?

Best Answer

figure; hAxes = gca;
plot( hAxes, I )
hold( hAxes, 'on' )
plot( hAxes, Q, '--' )