フィルターのクリア

How can I plot a custom pattern in a subplot?

5 ビュー (過去 30 日間)
Lars Stolp
Lars Stolp 2017 年 3 月 20 日
回答済み: Afiq Azaibi 2017 年 3 月 23 日
Hi, i tried to plot 4 patterncustom in 4 subplots. If the coordinate system is polar the plot will be printed. But if not the plot will delete all other subplots and only the last one will be displayed. Any hints to solve this issue?
  1 件のコメント
Adam
Adam 2017 年 3 月 20 日
Please show some code so we don't have to waste time guessing what you may be doing wrong.

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

採用された回答

Afiq Azaibi
Afiq Azaibi 2017 年 3 月 23 日
You can reproduce the issue by running the following. If you set a break point on the last line, you will see the subplot disappear after executing the last line.
subplot(2,2,1)
d = dipole;
[efield,az,el] = pattern(d, 75e6,'Type','efield');
phi = az';
theta = (90-el);
MagE = efield';
patternCustom(MagE,theta,phi);
This behavior occurs because the default to visualize radiation pattern is set to polar. If you look at the source code of 'patternCustom' when using 'polar' or 'rectangular', the current figure will be deleted.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeWeather and Atmospheric Science についてさらに検索

タグ

タグが未入力です。

Community Treasure Hunt

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

Start Hunting!

Translated by