You are on page 1of 1

1/15/2023 11:19 AM

subplot(1,2,1);
plot3(t,real(y),imag(y), 'linewidth', 1);
th2 = linspace(-2,-2, length(real(y))); hold on;
plot3(t, real(y), th2,'linewidth', .5); hold on;
th = linspace(2,2, length(real(y)))
plot3(t, th, imag(y), 'linewidth', .5)
subplot(1,2,2);
y2=exp((-j*(2*pi))*t); % Negative exponential
plot3(t,real(y2),imag(y2), 'linewidth', 1);
th2 = linspace(-2,-2, length(real(y2))); hold on;
plot3(t, real(y2), th2,'linewidth', .5); hold on;
th = linspace(2,2, length(real(y2)))
plot3(t,th, imag(y2), 'linewidth', .5)

Page 1 of 1

You might also like