例:
>>a=rand(5,5);
>>[v,d]=eig(a) \\ 其中v的列向量是a的特征向量,d的对角线元素即a的特征值。
>>eig(a) \\结果即a的特征值。
更多相关内容可参考 http://gdjpkc.xmu.edu.cn/DocumentList.aspx?cID=40 中MATLAB简介及MATLAB实验。
a =
8 1 6
3 5 7
4 9 2
>> eig(a)
ans =
15.0000
4.8990
-4.8990