matlab code wavefront generation
6 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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 commentaires
Réponse acceptée
Jarrod Rivituso
le 21 Avr 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');
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Parallel Computing Toolbox dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!