Does phased.RotateArray still exist?
Show older comments
I am looking to build a LHCP (left hand circular polarised) and RHCP(right hand circular polarised) antenna within matlab. My logic is to create two short dipole element and then place them 90 degree out of phase. Thus, I am looking to rotate one of the array such that it would rotate one of the short dipole element.
I have attached my code with it, please help me out.
function cpAntenna = createCircularPolarizedAntenna(antennaType, freq)
% Define two orthogonal linear antennas
antenna1 = phased.ShortDipoleAntennaElement('AxisDirection','Z','FrequencyRange',[1e9 10e9]);
antenna2 = phased.ShortDipoleAntennaElement('AxisDirection','Z','FrequencyRange',[1e9 10e9]);
antenna2 = phased.RotateArray('Array',antenna2,'Z',90); % Rotate 90 degrees for orthogonality
% Determine phase shift based on antenna type (RHCP or LHCP)
if antennaType == "RHCP"
phaseShift = [0, 90]; % 90-degree lag for RHCP
elseif antennaType == "LHCP"
phaseShift = [0, -90]; % 90-degree lead for LHCP
else
error('Invalid antenna type. Choose "RHCP" or "LHCP".');
end
Also if there is anybody that has any better ideas of building a LHCP and RHCP in matlab, feel free to help out.
3 Comments
Tianchu Lu
on 25 Jan 2024
Steven Lord
on 25 Jan 2024
What does "is not liking it at all" mean in this context?
- Do you receive warning and/or error messages? If so the full and exact text of those messages (all the text displayed in orange and/or red in the Command Window) may be useful in determining what's going on and how to avoid the warning and/or error.
- Does it do something different than what you expected? If so, what did it do and what did you expect it to do?
- Did MATLAB crash? If so please send the crash log file (with a description of what you were running or doing in MATLAB when the crash occured) to Technical Support so we can investigate.
Tianchu Lu
on 26 Jan 2024
Accepted Answer
More Answers (0)
Categories
Find more on Array Geometries and Analysis in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!