How to obtain the coordinate of the maximum value in the Cross ambiguity function

2 次查看(过去 30 天)
I am trying to find delay and doppler shift between two received signals by using the cross ambiguity function as follows.
prf = [1/1e-3 1/1e-3];
Fs = 1/1e-5;
[afmag,dly,dpp] = ambgfun(r1,r2,Fs,prf); % two received signals: r1 and r2
So, I obtain 2D array of afmag besides dly and dpp.
I think the coordiate where afmag is the maximum is what I want.
I may be able to find afmag, but I am not sure how to find the corresponding "dly" and "dpp" at that point of "afmag".
So, I want to know the maximum value of "afmag", the values of "dly" and "dpp" at that maximum point.
Thank you for your help.

回答(1 个)

David Goodmanson
David Goodmanson 2021-2-19
Hi John,
Not having the phased array system toolbox I don't know how the plot axes are oriented, but I think one of the two possibilities below should work, assuming the basic idea is correct. You would have to check on a plot.
[afmag,dly,dpp] = ambgfun(r1,r2,Fs,prf); % two received signals: r1 and r2
[~,k] = max(afmag(:))
[i j] = ind2sub(size(afmag),k)
% either this
dly0 = dly(i)
dpp0 = dpp(j)
% or this
dly0 = dly(j)
dpp0 = dpp(i)
  1 个评论
John Lee
John Lee 2021-2-19
Thanks, David,
Yes, but the problem is that we are not sure it is correct.
I don't know how to verify it because how the plot axes are oriented as you said.
Thnk you, anyway.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Matched Filter and Ambiguity Function 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by