matlab code wavefront generation

2 ビュー (過去 30 日間)
Ashutosh kumar
Ashutosh kumar 2011 年 4 月 21 日
can any budy provide me the matlab code for generation of wavefront produced by some signal sources distributed uniformly along a line in a volume .we can take sources as sinusoidal sources of same frequencies

採用された回答

Jarrod Rivituso
Jarrod Rivituso 2011 年 4 月 21 日
You mean like this?
>> x = 0:0.01:2*pi;
>> y = -1:0.01:1;
>> [X,Y] = meshgrid(x,y);
>> wavefront = sin(X);
>> surf(X,Y,wavefront,'EdgeColor','none');
  1 件のコメント
Ashutosh kumar
Ashutosh kumar 2011 年 4 月 21 日
no what i require is let there are 3 sinusoidal sources in space then the combined response of the three sources at any point in the space.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeParallel Computing Toolbox についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by