I need to inverse a variance-covariance matrix in Ruby and vector by matrix multiplication. Which numerical Ruby library/Gem should I use?
|
|
Try using the 'matrix' library:
|
||
|
|
|
|
A numerically more stable possibility than direct inversion is to use a Cholesky decomposition with the package you find here:
Better than inverting l is to use the method described in the wikpedia article linked above. If your problem is numerically too unstable then consider the Singular Value Decomposition, but I don't have code for it. |
||
|
|
