Singular Value Decomposition Implementation

I have a SVD library implemented in C. But I want to call its functions in a Java program. Is there a easy way to do that? Or someone please suggest a link for a SVD implementation in Java.


Colt是另一个带有矩阵和SVD的Java数学库。


There's also the Apache commons Math library: http://commons.apache.org/math/

which has matrices and SVD algorithms. And lots of other useful stuff!


If it's straight C, you could look at JNA, which will allow you to call C from java relatively easily.

There's also JNI and/or SWIG, but they're more involved.

链接地址: http://www.djcxy.com/p/49096.html

上一篇: 潜在的语义分析概念

下一篇: 奇异值分解实现