matlab code wavefront generation
11 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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
0 comentarios
Respuesta aceptada
Jarrod Rivituso
el 21 de Abr. de 2011
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');
Más respuestas (0)
Ver también
Categorías
Más información sobre Parallel Computing Toolbox en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!