Questions in FMCWExample about plotresponse
이전 댓글 표시
i want to get the value of the plotresponse,how can i do?

i want to get the max value in this Range-Speed picture.
댓글 수: 1
Sara James
2024년 7월 2일
I assume that the example is the "Automotive Adaptive Cruise Control Using FMCW Technology" example and the plot comes from the phased.RangeDopplerResponse class.
To get the max value of the Range-Speed picture, I suggest capturing the step output of rngdopresp.
% Determine maximum value
resp = rngdopresp(xr);
respPower = abs(resp).^2;
respPower_dB = pow2db(respPower);
maxRespPower_dB = max(respPower_dB(:))
답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Geometric Geodesy에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!