Spatial smoothing - 2D MUSIC [FMCW MIMO radar processing]

14 ビュー (過去 30 日間)
Luca Romano
Luca Romano 2019 年 2 月 18 日
コメント済み: mk14 2019 年 8 月 24 日
Hi everyone,
I'm using a 2D Music algorithm for the estimation of Range-Azimuth info in a ULA FMCW MIMO radar.
The algorithm procedure is pretty simple (see "Belfiori F., Application of 2D MUSIC Algorithm to Range-Azimuth FMCW Radar data" or " Manokhin G., MUSIC-based algorithm for range-azimuth FMCW radar data processing without estimating number of targets"). I have some doubt with regard the application of the 2D FB spatial smoothing in order to decorrelate the covariance matrix of the data; I'm wondering if I do some error in the following code section (in the way I order the x_win_new vector):
x= DataV'; %Data collected by the ULA (31 Spatial samples-31Antennas), 501 time samples
N = size(x,1); % Number of antennas
M = size(x,2); % Number of samples in fast-time dimension
% window dimension for the smoothing dim[m1xm2]
m1 = 25;
m2 = 300;
p1 = N-m1+1; %positions in the spatial dimension
p2 = M-m2+1; %positions in the time dimension
N_submat = p1*p2; %number of all the possible scan
M_tot = m1*m2;
ind_tot=1;
for p1_ind = 1:p1
for p2_ind = 1:p2
x_win_new(:,ind_tot) = reshape (x(p1_ind:m1+(p1_ind-1),p2_ind:m2+(p2_ind-1)),[1,M_tot])';
ind_tot=ind_tot+1;
end
end
X_win_cor = x_win_new*x_win_new';
X_win_cor_conj = conj(X_win_cor);
J= fliplr(eye(M_tot)); %transition matrix
C=(1/2*N_submat)*(X_win_cor + J*X_win_cor_conj*J); %data smoothed covariance matrix (forward+backward)
so in my case I'm scanning the full 2D [NxM] matrix in this way:
x x x . . x x x . . . . . . . .
x x x . . x x x x x x . . x x x
x x x . . x x x x x x . . x x x
. . . . . . . . x x x . . x x x
If I select m1=M and m2=N (so no spatial smoothing, only forward/backward averaging) I get good results as shown in the attached image.
Music2D_1.png
Thanks a lot in advance,
Best regards,
Luca,
  2 件のコメント
mk14
mk14 2019 年 7 月 11 日
Hi there, did you manage to solve the problem? I am also working on 2D music.
Shirleyuue Jiang
Shirleyuue Jiang 2019 年 8 月 22 日
Hi, I have some problem with 2D music( Range-Azimuth), can you show me your whole code?

サインインしてコメントする。

回答 (2 件)

mk14
mk14 2019 年 8 月 5 日
Hi there, can you please share your whole code. I cannot plot the data in the right way. Thanks!
Mark
  3 件のコメント
mk14
mk14 2019 年 8 月 23 日
I moved on to the capon beamformer instead of MUSIC.
Shirleyuue Jiang
Shirleyuue Jiang 2019 年 8 月 24 日
So in your experiment, do capon be better than MUSIC?

サインインしてコメントする。


Shirleyuue Jiang
Shirleyuue Jiang 2019 年 8 月 24 日
Hi, I have some problem with 2D music( Range-Azimuth), can you show me your whole code?
Best regards,
Shirley
  1 件のコメント
mk14
mk14 2019 年 8 月 24 日
For practical implementation, I think MUSIC is prone to interference. Moreover, when using capon you don't need to know number of source.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeBeamforming and Direction of Arrival Estimation についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by