matlab code wavefront generation
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commenti
Risposta accettata
Jarrod Rivituso
il 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');
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Parallel Computing Toolbox in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!