Hi
I want to compute eig-decomposition of symmetric matrix A in matlab. assume that A = V.D. V^-1(standard form ).
I checked eig(A)
and svd(A)
but svd
give me A = U.s.V which U and V are not orthonormal (U.V != I).
and also there is a approximately same problem for eig(A)
Is there any way that I can find standard form in Matlab?
I would appreciate your solutions.