フィルターのクリア

说明文档中的Patt​ern函数的type​:gain在2023​a版本中并不支持?

2 ビュー (過去 30 日間)
xu yang
xu yang 2023 年 3 月 20 日
コメント済み: xu yang 2023 年 3 月 30 日
说明网页中申明支持的type:gain, phase等模式在2022b和2023a中均不支持。应如何解决?
Type Quantity to plot
'directivity' | 'gain' | 'realizedgain' | 'efield' | 'power' | 'powerdb' | 'phase'
Error using phased.internal.parsePatternInputs
Expected Type to match one of these values:
'directivity', 'efield', 'power', 'powerdb'

回答 (1 件)

Raghunathraju
Raghunathraju 2023 年 3 月 27 日
Hi xu yang,
As per my understanding,you want to plot Phase pattern of an antenna, but you are unable to do that using 2022b and 2023a versions of MATLAB.
You can plot the pattern of an antenna with phase as its ‘Type’ for which polarization must be provided. You can also plot all other modes in 20222b and 2023a that are mentioned in the documentation
I can demonstrate you with an example below.
a=patchMicrostrip;
figure;
pattern(a,5e9,'Polarization','H','Type','phase');
figure
pattern(a,5e9,'Type','efield')
figure
pattern(a,5e9,'Type','gain')
figure
pattern(a,5e9,'Type','powerdb')
For more information refer to MathWorks Documentation
  3 件のコメント
Raghunathraju
Raghunathraju 2023 年 3 月 28 日
Hi xu yang,
In PhasedArray Toolbox ,'pattern' function doesn't have 'gain' property as its type,whereas you can plot gain and all other modes of pattern in Antenna toolbox.You can refer pattern for more information.
xu yang
xu yang 2023 年 3 月 30 日
hi Raghunathraju,
Thanks! I agree with you. For the PhasedArray Toolbox, do we have any other function which can calculated the gain or the maximum gain?

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

カテゴリ

Help Center および File ExchangePhased Array Design and Analysis についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!