factor directional antenna array
11 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Hello! How does the use of Phased Array System Toolbox to calculate the ratio of the simulated directional antenna array?
2 Commenti
Risposta accettata
Honglei Chen
il 18 Ott 2012
Modificato: Honglei Chen
il 22 Ott 2012
Hi Pomisov,
There are two ways you can see the directivity information.
The first one is to plot the radiation pattern. For example
fc = 3e8; c = 3e8;
h = phased.ULA(4,0.5);
plotResponse(h,fc,c,'format','polar')
You can also use ArrayGain. It is the SNR gain achieved by the array compared to a single element. It is not exactly the directivity but it is related to that.
fc = 3e8; c = 3e8;
h = phased.ULA(4,0.5);
hag = phased.ArrayGain('SensorArray',h,'PropagationSpeed',c);
% calculate array gain at boresight in dB
g = step(hag,fc,[0;0])
HTH,
Più risposte (1)
Pomisov Andrey
il 21 Ott 2012
1 Commento
Honglei Chen
il 22 Ott 2012
Does the code above using ArrayGain works for you? If not, could you give me a simplified example? Thanks.
Vedere anche
Categorie
Scopri di più su Antennas, Microphones, and Sonar Transducers 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!