필터 지우기
필터 지우기

Eigenvalues performance for uncorrelated signals

조회 수: 1 (최근 30일)
fatoma Saml
fatoma Saml 2021년 7월 11일
댓글: fatoma Saml 2021년 7월 12일
Hi everyone,
I want to study the eigenvalues performance for two source signals, one of the signals have theta=0, while the other one have theta that change from -45 to 45. I implemented the following code
N_sig=2;
Theta1=[0]/180*pi; %%% first Source angle
Theta2=[-45:1:45]/180*pi; %% second Source angle
doa=[Theta1 Theta2]/180*pi; %Direction of arrival
P=[0:9]; %% number of antennas
lambda = 1; %% wavelength
d=lambda/2;%Element spacing
snr=10;%SNR
sigma2 = 0.01; % Noise variance
s_var= [10]; %% signal variance
center_freq=10^6;
Snap=100; %% number of snapshots
% % generating noise
noise=(1/sqrt(2))*(randn(length(P),Snap)+j*randn(length(P),Snap));
noise_std=10^(-snr/20);
n=noise_std*noise;
% generated signal
F=randn(N_sig,Snap)*pi;
Signal=sqrt(s_var).*exp(j*2*F);
% generate Data matrix
A=zeros(N_sig,length(P)); %To create a matrix with N_sign row and P column
for kk=1:N_sig
A(kk,:)=exp(j*2*pi*d*P'*sin(doa(kk))/lambda); % steering matrix
end
A=A';
x=A*Signal+n; % received signal
% % Data covariance matrix
R=x*x';
[V, D] = eig(R);
eigs_sorted = sort(diag(D),'descend');
DD=10*log10(eigs_sorted);
I have tried several ways, but I don't get the same result as in the figure shown below.
Any help I realy apperciate it.
  댓글 수: 2
Yazan
Yazan 2021년 7월 12일
편집: Yazan 2021년 7월 12일
You forgot to define doa in your code.
fatoma Saml
fatoma Saml 2021년 7월 12일
I define it in the code, but it was in captial letter, now I edit it.

댓글을 달려면 로그인하십시오.

답변 (0개)

카테고리

Help CenterFile Exchange에서 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