I want to see graph about wave propagation at -6<x<6,-6<z<6 and t=0,4,8,12,16 information of the wave propagation(y propagation plane wave) : E(x,z,t)= cos(2*pi*10^8+1.05x+1.8z) how can i get the code of graph i want to see? That's all. thank you.

3 件のコメント

KSSV
KSSV 2016 年 11 月 2 日
There is no 't' involved in E...
rance low
rance low 2016 年 11 月 2 日
編集済み: rance low 2016 年 11 月 2 日
wer
Rena Berman
Rena Berman 2017 年 1 月 20 日
(Answers Dev) Restored Question.

サインインしてコメントする。

 採用された回答

KSSV
KSSV 2016 年 11 月 2 日

0 投票

N = 100 ;
x = linspace(-6,6,N) ;
z = linspace(-6,6,N) ;
[X,Z] = meshgrid(x,z) ;
t = [0 4 8 12] ;
E = zeros(N,N,length(t)) ;
for i = 1:length(t)
E(:,:,i)= cos(2*pi*10^8*t(i)+1.05*X+1.8*Z) ;
surf(X,Z,E(:,:,i)) ;
view(2)
drawnow
end

2 件のコメント

rance low
rance low 2016 年 11 月 2 日
oh thank you! i have a question. does the code'view(2)' mean 't=2?'
KSSV
KSSV 2016 年 11 月 2 日
You remove view(2) and see how the out put would be.

サインインしてコメントする。

その他の回答 (1 件)

pukhraj khemada
pukhraj khemada 2019 年 4 月 9 日

0 投票

Vortex array by three plan wave interfrnce

カテゴリ

ヘルプ センター および File ExchangeSimulink についてさらに検索

質問済み:

2016 年 11 月 2 日

回答済み:

2019 年 4 月 9 日

Community Treasure Hunt

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

Start Hunting!

Translated by