MATLAB: Metrics for Matrices similarity

metrics for similarity

Dear all, I have made a process that makes approxmation of a source matrix.
Every approximated matrix contains error which usually are extreme values (compares to the source). I have noticed that when sme approximation start looking the same then I am getting really close the source image.
That I want to ask you if you know some mathematical ways to measure similaritis in two approximated-matrices. I have used already the corrcoef and it results goosd results but I also want to check other metric.
I wuld like to thank you in advance for your help B.R Alex

Best Answer

you can try using their eigenvalues:
x = norm(eig(a)-eig(b)); % a & b are your 2 matricies
Related Question