matlab code wavefront generation

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

 Respuesta aceptada

Jarrod Rivituso
Jarrod Rivituso el 21 de Abr. de 2011

1 voto

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 comentario

Ashutosh kumar
Ashutosh kumar el 21 de Abr. de 2011
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.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Parallel Computing Toolbox en Centro de ayuda y File Exchange.

Productos

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by