フィルターのクリア

how do I create a log periodic antenna using the antenna toolbox

5 ビュー (過去 30 日間)
Joseph Koehl
Joseph Koehl 2017 年 6 月 9 日
コメント済み: Joseph Koehl 2017 年 6 月 12 日
I need to create a plot of the far field pattern of a log periodic antenna. I thought I could use the antenna toolbox's linearArray for this, but I can't determine how to increase the length of of consecutive elements in the array. Anyone have any thoughts?

回答 (1 件)

Shashank Kulkarni
Shashank Kulkarni 2017 年 6 月 12 日
Below is the sample code to specify multiple elements of the same type (e.g. dipole) for the linear array. You can then access the properties of the individual elements of the array.
l = linearArray;
d = dipole;
l.Element = [d d d];
l.Element(1).Length = 2;
l.Element(2).Length = 3;
l.Element(3).Length = 4;
show(l);
I hope this helps.
Regards,
Shashank

カテゴリ

Help Center および File ExchangeAnalysis, Benchmarking, and Verification についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by