I have a question about the return value of phased.RangeAngleResponse.
3 views (last 30 days)
Show older comments
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 Comments
Accepted Answer
Pratyush Swain
on 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 Comments
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!