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
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 ExchangePhased Array System Toolbox についてさらに検索

質問済み:

2021 年 3 月 30 日

コメント済み:

2024 年 7 月 2 日

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by