How can I get the phase of a ConformalArray
1 view (last 30 days)
Show older comments
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 Comments
Answers (2)
Honglei Chen
on 7 Oct 2019
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 Comments
See Also
Categories
Find more on Antennas, Microphones, and Sonar Transducers in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!