How can I get the phase of a ConformalArray
1 次查看(过去 30 天)
显示 更早的评论
I'm using a ConformalArray of many elements.
The array is build by:
el = phased.IsotropicAntennaElement;
el.BackBaffled = false;
h = phased.ConformalArray();
h.ElementPosition = Config.SubArray{1}.ElementPosition; % based on our array architecture
h.ElementNormal = Config.SubArray{1}.ElementNormal; % based on our array architecture
h.Taper = ones(size(SV)); % the SV is a steering vector, one complex value per element
h.Element = el;
c = physconst('LightSpeed');
Then I compute the equivalent pattern of the array (including the steering vector) by using:
[PAT,AZ_ANG,EL_ANG] = pattern(h, Fc, AZ, EL, 'PropagationSpeed', c, 'Type','powerdb', 'CoordinateSystem', 'polar', 'Weights', SV(:),'Normalize',false);
Where AZ and EL are arrays for the estimation.
The problem is that I need the phase of the equivalent array and not only the power.
I tried several options but none worked. I saw some solution using ArrayResponse but they don't have the steering vector as an input and therefore result is not what I looking for.
Please nelp me with this.
Thank you,
Alecs
0 个评论
回答(2 个)
Honglei Chen
2019-10-7
Could you elaborate what you mean by having steering vector as an input? In your pattern() call, the steering vector (I assume that's what SV is) is passed in through 'Weights' option. That option is available for ArrayResponse too so you should be able to get phase that way. If you encounter any issue, I'd happy to help out.
HTH
0 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!