Plotting a Complex exponential - G(e^jw)
23 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
When plotting a function which is G(e^jw) what function would I use? As I know that for G(jw) I can use define a transfer equation etc.
0 comentarios
Respuestas (4)
Rick Rosson
el 12 de En. de 2015
Editada: Rick Rosson
el 12 de En. de 2015
N = 1024;
dw = 2*pi/N;
w = -pi:dw:pi-dw;
s = exp(j*w);
G = (s-a)./((s-b).*(s-c));
figure;
plot(w,abs(G));
figure;
plot(w,20*log10(abs(G)));
1 comentario
Oleg Zhuravlev
el 31 de Ag. de 2023
What are the variables a, b, c? Are they defined in a separate script?
John D'Errico
el 11 de En. de 2015
Editada: John D'Errico
el 11 de En. de 2015
Um, what do you want to plot?
I assume that G returns a complex result, for complex input. As I hope you understand, a complex number is really a two dimensional animal. It has a real and an imaginary part. So typically when one plots complex numbers, you use the x and y axes, x for the real part, y for the imaginary part.
However, since the output is also complex in general, you will need to make a choice. Do you plot the real or imaginary part on the z axis? Or the magnitude of G, or the polar angle. Nothing stops you from making more than one plot of course.
In terms of what tool would you use, surf or contour will suffice for the task, or any of their cousins. Any tool that lets you plot in 3 dimensions.
0 comentarios
Aditya Dua
el 11 de En. de 2015
You can either plot abs() and angle() of G(e^jw) vs. w on the same axes, or just plot G(e^jw) in the x-y plane using something like plot(real(G),imag(G),'.'). Depends on what you are trying to accomplish.
0 comentarios
abcd
el 26 de Oct. de 2023
clc
clear all
close all
syms t s w
x=exp(jwt).*heaviside(t)
X=laplace(x)
0 comentarios
Ver también
Categorías
Más información sobre Animation en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!