Plot (@ 1 MHz) using MATLAB: (a) Electric field (b) Magnetic field (c) Total power flow

조회 수: 33 (최근 30일)
KANISHK
KANISHK 2022년 9월 11일
댓글: Rik 2022년 9월 15일
Consider a plane wave propagating in the +Z direction within a conducting medium. Plot (@ 1 MHz) using MATLAB:
(a) Electric field
(b) Magnetic field
(c) Total power flow
  댓글 수: 1
Rik
Rik 2022년 9월 15일
@KANISHK regarding you flag ("I AM DONE WITH AN ANSWER PLEASE REMOVE THE QUESTION"); that is not how this forum works. You posted a public question and have received a public answer. Why would you receive free help from a stranger, but deny others the benefit of the answer?
You have not commented and/or accepted and/or given the answer an upvote. If it was helpful enough to solve your question, why haven't you done any of these?
Backup of this question:
Plot (@ 1 MHz) using MATLAB: (a) Electric field (b) Magnetic field (c) Total power flow
Consider a plane wave propagating in the +Z direction within a conducting medium. Plot (@ 1 MHz) using MATLAB:
(a) Electric field
(b) Magnetic field
(c) Total power flow

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

답변 (1개)

Sam Chak
Sam Chak 2022년 9월 11일
You want to plot something like this?
n = 6;
x = linspace(0, n*pi, n*1801);
z = sin(x);
y = zeros(1, length(x));
plot3(x, y, z), hold on
y = sin(x);
z = zeros(1, length(x));
plot3(x, y, z), grid on,
ylim([-2 2]), zlim([-2 2]),
xlabel('Z'), ylabel('Y'), zlabel('X'), legend('\bf{E}', '\bf{H}')
  댓글 수: 2
Vraj
Vraj 2022년 9월 14일
Can you explain or send a ss in how to plot E , H and power here.
Rik
Rik 2022년 9월 15일
This looks like a homework question. You can find guidelines for posting homework on this forum here. If you have trouble with Matlab basics you may consider doing the Onramp tutorial (which is provided for free by Mathworks). If your main issue is with understanding the underlying concept, you may consider re-reading the material you teacher provided and ask them for further clarification.
You can already see how to plot E and H. What have you tried to solve your question?

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

카테고리

Help CenterFile Exchange에서 MATLAB에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by