matlab特徵值分解

矩陣A的特徵值分解:code a=[1 2;3 4]; [u,v]=eig(a); %% eig test test1_1=u*v*inv(u); test1_2=u*v*u'; test1_3=sqrt(sum(u(:,1).^2)); test1_4=u'*u; test1_5=u(:,1)'*u(:,2); test1_1 =blog     1.0000    2.0000     3.0
相關文章
相關標籤/搜索