![How to draw a electromagnetic wave and plot it in 3D - 2019 03 23.png](https://www.mathworks.com/matlabcentral/answers/uploaded_files/210008/How%20to%20draw%20a%20electromagnetic%20wave%20and%20plot%20it%20in%203D%20-%202019%2003%2023.png)
How to draw a electromagnetic wave and plot it in 3D
59 views (last 30 days)
Show older comments
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](https://www.mathworks.com/matlabcentral/answers/uploaded_files/210007/Capture.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/210005/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/210006/image.png)
![Capture.PNG](https://www.mathworks.com/matlabcentral/answers/uploaded_files/210007/Capture.png)
0 Comments
Accepted Answer
Star Strider
on 23 Mar 2019
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](https://www.mathworks.com/matlabcentral/answers/uploaded_files/210008/How%20to%20draw%20a%20electromagnetic%20wave%20and%20plot%20it%20in%203D%20-%202019%2003%2023.png)
2 Comments
CHI-HAN
on 2 Jan 2025
I think E=1 H=1 in this diagram. Therefore, this is linear polarized.
But I am just qurious that (E = 2;H = 3;) then where is 0 and 1 ?
Or how do you reverse???
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!