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 CenterFile Exchange에서 Parallel Computing Toolbox에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by