matlab code wavefront generation
4 views (last 30 days)
Show older comments
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 Comments
Accepted Answer
Jarrod Rivituso
on 21 Apr 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');
More Answers (0)
See Also
Categories
Find more on Parallel Computing Toolbox in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!