yagi uda radiation pattern
Afficher commentaires plus anciens
sir/madam i require the electric field equation for yagi uda antenna from which i can write a matlab program.I found it in balanis text book.But is it necessary to use method of moments technique for getting the radiation pattern?Don't we have any other way for getting the field pattern?
1 commentaire
Walter Roberson
le 27 Août 2011
Your tags include "using matlab", but your question is about the theory of electric field equations.
Réponses (2)
Veera Kanmani
le 20 Avr 2018
1 vote
1 commentaire
venkateswararao
le 11 Juil 2024
Sreeja
le 7 Juil 2024
0 votes
freq = 400e6; lambda = 3e8 / freq; L = lambda / 2; d = lambda / 4; N = 5;
elements = zeros(N, 3); for i = 1:N elements(i, :) = [i * d, 0, L]; end
plot3(elements(:, 1), elements(:, 2), elements(:, 3), 'o-');
1 commentaire
Sreeja
le 7 Juil 2024
freq = 400e6; lambda = 3e8 / freq; L = lambda / 2; d = lambda / 4; N = 5;
elements = zeros(N, 3); for i = 1:N elements(i, :) = [i * d, 0, L]; end
plot3(elements(:, 1), elements(:, 2), elements(:, 3), 'o-');
Catégories
En savoir plus sur Dipole Antennas dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!