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

Walter Roberson
Walter Roberson 2011년 8월 27일
Your tags include "using matlab", but your question is about the theory of electric field equations.

댓글을 달려면 로그인하십시오.

답변 (2개)

Sreeja
Sreeja 2024년 7월 7일

0 개 추천

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

Sreeja
Sreeja 2024년 7월 7일
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-');

댓글을 달려면 로그인하십시오.

카테고리

도움말 센터File Exchange에서 Dipole Antennas에 대해 자세히 알아보기

질문:

2011년 8월 27일

댓글:

2024년 7월 11일

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by