how to measure he similarity between two 2D complex fields in matlab?
问题 I have a matrix operation Y=B*A*X; ; where A=exp(1i.*pi*rand(50,50)); B=transpose(A); X is the input which is random X=exp(1i.*pi*rand(50,50)); so I have Y calculated. Now I find another Y say Y1 for another X1=exp(1i.*pi*rand(50,50)); Y and Y1 are complex outputs. How can I measure the similarity between these fileds ? Can someone please help. I have tried rsme=sqrt(mean(abs(Y1(:))-abs(Y(:)).^2); But I guess it is a wrong measure ? 回答1: The mean-squared error (MSE) is a common similarity