Azzera filtri
Azzera filtri

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

2 visualizzazioni (ultimi 30 giorni)
xu yang
xu yang il 20 Mar 2023
Commentato: xu yang il 30 Mar 2023
说明网页中申明支持的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'

Risposte (1)

Raghunathraju
Raghunathraju il 27 Mar 2023
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 Commenti
Raghunathraju
Raghunathraju il 28 Mar 2023
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 il 30 Mar 2023
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?

Accedi per commentare.

Categorie

Scopri di più su Phased Array Design and Analysis in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!