フィルターのクリア

How can I import 2D antenna radiation pattern into 2D cartesian coordinates environment?

4 ビュー (過去 30 日間)
Is there a way to get the radiation pattern's x and y vertices (for instance) from available matlab antennas? Or any other kind of data which might be further used for plot(x,y) function?

採用された回答

Star Strider
Star Strider 2024 年 5 月 26 日
I am not certain what you want or what your current data are. (I also do not have significant experience with the Antenna Toolbox.) The pol2cart function offers one option.
Try this —
h = helix;
[pat,azimuth,elevation] = pattern (h, 2e9, 0, 1:1:360); % Example from the 'pattern' Documentation
% figure
% plot(elevation, pat)
% grid
figure
polarplot(deg2rad(elevation), abs(pat))
[x,y] = pol2cart(deg2rad(elevation).', abs(pat));
figure
plot(x, y)
grid
axis('equal')
.
  2 件のコメント
Samuel Vadovic
Samuel Vadovic 2024 年 5 月 26 日
Thank you very much!!! This worked perfectly.
Star Strider
Star Strider 2024 年 5 月 26 日
As always, my pleasure!

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeAntennas, Microphones, and Sonar Transducers についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by