You are on page 1of 1

21-Jan-2023.

txt 1/15/2023 11:18 AM

Broom Stick
TPG Sim card
onion
tomato
garlic
ginger
Mushroom
lemon

Air ticket
Hosur methai

t = 0:0.01:5;
y=exp((j*(2*pi))*t); % positive exponent
subplot(1,2,1);
plot3(t,real(y),imag(y), 'linewidth', 1);
subplot(1,2,2);
y2=exp((-j*(2*pi))*t); % negative exponent
plot3(t,real(y2),imag(y2), 'linewidth', 1);

t = 0:0.01:5;
y=exp((j*(2*pi))*t); % Positive exponential
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