MATLAB中eig的作用

MATLAB中eig的作用


eig Find eigenvalues and eigenvectors 
返回矩阵的特征值和特征向量; 
[V,D] = eig(A) 
D是特征值 
V特征向量 
例如a=[1 2 3;4 5 6;7 8 9];[V,D]=eig(a) 
结果: 
V = 


-0.2320 -0.7858 0.4082 
-0.5253 -0.0868 -0.8165 
-0.8187 0.6123 0.4082 


D = 


16.1168    0        0 
0        -1.1168    0 
0          0       -0.0000
posted @ 2015-03-29 16:18  vigorpush  阅读(1290)  评论(0编辑  收藏  举报