Is there a SVD implementation in php?

link|improve this question

feedback

2 Answers

up vote 0 down vote accepted

Paul Meagher has done a PHP port of Java's JAMA matrix class at phpmath.com. It's PHP4, but runs quite happily, and does provide a SingularValueDecomposition class.

It doesn't seem to be available on the site at the moment (the link is broken), but the class is included as part of my PHPExcel distribution (albeit I've updated the core matrix classes to PHP5).

link|improve this answer
Thank you, i will certainly check it out. – Evan Mar 18 '11 at 14:49
feedback

Singular Value Decomposition is a way of factoring matrices into a series of linear approximations that expose the underlying structure of the matrix. SVD is extraordinarily useful and has many applications such as data analysis, signal processing, pattern recognition, image compression, weather prediction, and Latent Semantic Analysis or LSA (also referred to as Latent Semantic Indexing or LSI).

For its implementation in PHP, visit the following links.

link|improve this answer
Thanks, i saw that. – Evan Mar 18 '11 at 14:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.