writing a traveling electromagnetic wave
Ältere Kommentare anzeigen
How can I write the highlited below in matlab with ploting :

Exercise 1-3: The electric field of a traveling
electromagnetic wave is given by
E(z, t) = 10 cos(π × 10^7t + πz/15 + π/6) (V/m).
Determine (a) the direction of wave propagation, (b) the
wave frequency f , (c) its wavelength λ, and (d) its phase
velocity up.
Answer: (a)−z direction, (b) f = 5 MHz, (c) λ = 30 m,
(d) up = 1.5 × 108 m/s.
Antworten (1)
darova
am 16 Feb. 2021
I think your plot should be a surface since you have two dependent variables z and t
Here is an example
t = linspace(0,200,30);
x = linspace(0,200,30);
[T,X] = meshgrid(t,x); % create matrices
E = % your formula
surf(T,X,E)
Remember about dot before operator signs while using matrices
4 Kommentare
Moaiyd Hobani
am 18 Feb. 2021
Bearbeitet: darova
am 18 Feb. 2021
darova
am 18 Feb. 2021
Here are suggestions

Moaiyd Hobani
am 18 Feb. 2021
darova
am 18 Feb. 2021
Increase number of points
Kategorien
Mehr zu Mathematics finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

