필터 지우기
필터 지우기

hello sir i want to calculate mean square error for my all possible value for the system how to calculate it ?

조회 수: 1 (최근 30일)
k0=1;
ss=[0,1,2,3];
kk=0;
poss=[];
for ii=1:d
poss=[poss,k0+(ii-1)*(N/d)];
end
for ii=1:length(poss)
k1=poss(ii);
for jj=ii+1:length(poss)
k2=poss(jj);
kk=kk+1;
k_p(kk,:)=[k1,k2];
A=[1, 1 ; exp(1i*2*pi)*(k1-1)*(ss(2)/N), exp(1i*2*pi)*(k2-1)*(ss(2)/N) ;exp(1i*2*pi)*(k1-1)*(ss(3)/N) , exp(1i*2*pi)*(k2-1)*(ss(3)/N); exp(1i*2*pi)*(k1-1)*(ss(4)/N), exp(1i*2*pi)*(k2-1)*(ss(4)/N)];
XF=pinv(A)*XD(:,1)
  댓글 수: 1
Walter Roberson
Walter Roberson 2016년 4월 1일
Your code is not complete. Some end statements are missing.
What is the mean squared error to be calculated relative to? MSE is used for comparison between two things, not by itself.
What are the parts that are allowed to vary for consideration of "all possible values"? I see that d is not defined so should we take it that f is one of the things that can change?

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

채택된 답변

Image Analyst
Image Analyst 2016년 4월 1일
There is a function immse() in the Image Processing Toolbox. But like Walter says, you need two signals.
  댓글 수: 3
Image Analyst
Image Analyst 2016년 4월 3일
That would be zero. The MSE of X as compared to X (itself) is, of course, zero.
irfan
irfan 2016년 4월 4일
sir i will send you my code so you help me to calculate the mean square error of all possible values

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

추가 답변 (0개)

태그

Community Treasure Hunt

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

Start Hunting!

Translated by