필터 지우기
필터 지우기

Plotting a Complex exponential - G(e^jw)

조회 수: 43 (최근 30일)
Bill
Bill 2015년 1월 11일
답변: abcd 2023년 10월 26일
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.

답변 (4개)

Rick Rosson
Rick Rosson 2015년 1월 12일
편집: Rick Rosson 2015년 1월 12일
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
Oleg Zhuravlev
Oleg Zhuravlev 2023년 8월 31일
What are the variables a, b, c? Are they defined in a separate script?

댓글을 달려면 로그인하십시오.


John D'Errico
John D'Errico 2015년 1월 11일
편집: John D'Errico 2015년 1월 11일
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.

Aditya Dua
Aditya Dua 2015년 1월 11일
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.

abcd
abcd 2023년 10월 26일
clc
clear all
close all
syms t s w
x=exp(jwt).*heaviside(t)
X=laplace(x)

카테고리

Help CenterFile Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by