发新话题
打印

问matrix eigen decomposition code

问matrix eigen decomposition code

请问谁知道哪里可以找到matrix eigen decomposition code 啊?

boost有eigen decomposition的function么?

或者其他现成的library的code?

我的情况比较麻烦. matrix是sigular的, 就是说没有n个eigen value, 有0 eigen value(s) [ 本帖最后由 sleeplesspig 于 2006-12-18 11:24 AM 编辑 ]

TOP

singular不singular和evd没关系啊

c++的话,去图书馆摸一本numerical recipe c++,书后光盘就应该有

网上似乎也应该很多很多很多才对...

TOP

Signular value decomposition? Check SVD in numerical recipe. This might work.

Havnt done this in years... hope I remember correctly.

TOP

我已经有numerical recipe C的电子书,
没有c++, 其实也没关系, 谢谢了

我不知道它是否能处理eigen value=0的情况.

TOP

还是玉玺说得到位 查SVD就好了。

TOP

1 0 0 0
0 1 0 0
0 0 1 0
0 0 0 1
做英雄时台下没有记者  当流氓时旁边尽是熟人

TOP

如果你只是关心最大eigen value and its eigen vector, 直接用现成求eigen value的code就够了,没必要用svd把。 if u use matlab, try pinv() for ill-conditioned matrix [ 本帖最后由 aeolus 于 2006-12-18 10:50 PM 编辑 ]

TOP

发新话题