scalala / Scalala

Scalala has been superseded by dlwh/breeze. Scalala is a high performance numeric linear algebra library for Scala, with rich Matlab-like operators on vectors and matrices; a library of numerical routines; support for plotting.
http://groups.google.com/group/scalala
GNU Lesser General Public License v2.1
298 stars 30 forks source link

Add matrix rank() method. #20

Closed lancelet closed 13 years ago

lancelet commented 13 years ago

This pull request adds a scalala.library.LinearAlgebra.rank() method, which estimates the rank of a matrix by counting the singular values of the SVD method. Both Octave and Matlab also use SVD to compute rank.

dramage commented 13 years ago

Very nice, thanks!