フィルターのクリア

yagi uda radiation pattern

12 ビュー (過去 30 日間)
venkateswararao
venkateswararao 2011 年 8 月 27 日
コメント済み: venkateswararao 2024 年 7 月 11 日 7:35
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 件)

Veera Kanmani
Veera Kanmani 2018 年 4 月 20 日
  1 件のコメント
venkateswararao
venkateswararao 2024 年 7 月 11 日 7:35
Thanks

サインインしてコメントする。


Sreeja
Sreeja 2024 年 7 月 7 日 14:32
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 日 14:36
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-');

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeLanguage Fundamentals についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by