Task details
• • •
I am doing a project on Direction of arrival estimation using MUSIC algoithm and I have a basic code for that. My requiremets are:
-Need to write code on top of my basic code to plot RMSE(Root-mean-Square-Error) vs SNR(Signal-to-Noise Ratio).
- Also need MUSIC algorithm compared with CRLB(cramer-rao lower bound) method performance by plotting RMSE vs SNR .
My basic Code:
A=[30 45]/180pi; %Arrival of signal S=300; %Number of snapshots included f=[pi/6 pi/4]1; %Signal Frequency N=8; %Array elements count L=length(f); %Length(Number) of signal lambda=160; %Signal Wavelength t=lambda/2; %Spacing of elements snr=30; %Signal-to-Noise ratio T=zeros(L,N); %Matrix creation with L row and N column for p=11 T(p,:)=expH2pitsin(A(p))/ lambda[0:N-1]); %Matrix Allocation end T=T’; yy=2exp(j(f*[1:S])); %Simulate of cinnal
The post RMSE(Root-mean-Square-Error) appeared first on My Assignment Online.