필터 지우기
필터 지우기

How to draw a electromagnetic wave and plot it in 3D

조회 수: 83 (최근 30일)
Olivia Hagedorn
Olivia Hagedorn 2019년 3월 23일
댓글: josue contreras 2020년 1월 17일
I have an equation for an electric and magentic wave. Very simply they look like and . where A, ω, k are just constants. I want to plot these in a 3-dimensional space. I'm not sure if I even need to include the time t since I only need a snap shot at one instance in time. I have tried surface plot and fplot3 to no success. I want something that looks like: Capture.PNG

채택된 답변

Star Strider
Star Strider 2019년 3월 23일
I’m not certain what you want.
Try this:
E = 2;
H = 3;
t = linspace(0, 2*pi);
omega = 2;
k = pi/2;
x = ones(size(t));
c = cos(omega*t - k*x);
figure
patch([t fliplr(t)], [c zeros(size(c))], [zeros(size(t)) zeros(size(t))], 'b')
hold on
patch([t fliplr(t)], [zeros(size(t)) zeros(size(t))], [c zeros(size(c))], 'r')
hold off
grid on
view(40, 40)
producing this figure:
How to draw a electromagnetic wave and plot it in 3D - 2019 03 23.png
  댓글 수: 1
josue contreras
josue contreras 2020년 1월 17일
excuse me so how can i get the lhcp of that particular wave

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Surface and Mesh Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by