I have a question about the return value of phased.RangeAngleResponse.
6 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
JG
le 25 Mar 2025
Réponse apportée : Pratyush Swain
le 27 Mar 2025
In the example "Integrated Sensing and Communication II: Communication-Centric Approach Using MIMO-OFDM", the helperPositionHeatmap function is used with moving scatterers. I’m curious about what determines the color of the heatmap in this case.
Below is a portion of the code from the helperPositionHeatmap function, and I’m particularly wondering about the value rar. It seems like the heatmap colors are based on this rar value, so I’d like to know specifically what it represents.
rangeAngleResponse = phased.RangeAngleResponse('SensorArray', obj.ReceiveArray, ...
'RangeMethod', 'FFT', ...
'SampleRate', obj.SampleRate, ...
'SweepSlope', obj.Bandwidth / obj.OFDMSymbolDuration, ...
'OperatingFrequency', obj.CarrierFrequency, ...
'ReferenceRangeCentered', false);
[rar, r, theta] = rangeAngleResponse(conj(data));
My guess is that it represents the strength of the signal reflected by moving objects, but I'm not completely sure, so I wanted to ask.
0 commentaires
Réponse acceptée
Pratyush Swain
le 27 Mar 2025
Hi JG,
I guess you are right in your understanding. By searching for outputs for the phased.RangeAngleResponsefunction, the 'rar' or the 'RESP' seems to be range angle response data matrix containing the computed response values for different ranges and angles.
Its dimension depends upon the 'RangeMethod' and 'DechirpInput' properties passed in the function
[RESP,RANGE,ANG] = phased.RangeAngleResponse('SensorArray', obj.ReceiveArray, ...
'RangeMethod', 'FFT', ...
'SampleRate', obj.SampleRate, ...
'SweepSlope', obj.Bandwidth / obj.OFDMSymbolDuration, ...
'OperatingFrequency', obj.CarrierFrequency, ...
'ReferenceRangeCentered', false ...
'DechirpInput', true)
For more information, please go through the ouput arguments for the phased.RangeAngleResponse function:
Hope this helps.
0 commentaires
Plus de réponses (0)
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!