Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/clbustos/extendmatrix
Cosmin Bonchis's enhancements to the Ruby "Vector" and "Matrix" module and includes: LU and QR (Householder, Givens, Gram Schmidt, Hessenberg) decompositions, bidiagonalization, eigenvalue and eigenvector calculations. Work on Ruby 1.8.7, 1.9.1 and 1.9.2 (SVN version)
https://github.com/clbustos/extendmatrix
Last synced: 3 months ago
JSON representation
Cosmin Bonchis's enhancements to the Ruby "Vector" and "Matrix" module and includes: LU and QR (Householder, Givens, Gram Schmidt, Hessenberg) decompositions, bidiagonalization, eigenvalue and eigenvector calculations. Work on Ruby 1.8.7, 1.9.1 and 1.9.2 (SVN version)
- Host: GitHub
- URL: https://github.com/clbustos/extendmatrix
- Owner: clbustos
- License: apache-2.0
- Created: 2010-05-04T15:03:23.000Z (over 14 years ago)
- Default Branch: master
- Last Pushed: 2015-05-08T16:25:22.000Z (over 9 years ago)
- Last Synced: 2024-07-19T04:35:59.587Z (4 months ago)
- Language: Ruby
- Homepage: http://rubyforge.org/projects/matrix/
- Size: 276 KB
- Stars: 33
- Watchers: 2
- Forks: 5
- Open Issues: 2
-
Metadata Files:
- Readme: README.txt
- Changelog: History.txt
- License: LICENSE.txt
Awesome Lists containing this project
README
= extendmatrix
* http://github.com/clbustos/extendmatrix
== DESCRIPTION:
The project consists of some enhancements to the Ruby "Matrix" module and includes: LU and QR (Householder, Givens, Gram Schmidt, Hessenberg) decompositions, bidiagonalization, eigenvalue and eigenvector calculations.
Include some aditional code to obtains marginal for rows and columns.Original code from http://rubyforge.org/projects/matrix/ , done by Cosmin Bonchis as a Google Summer of Code 2007 project for Ruby Central Inc.
Gem, github repository and current version manteined by Claudio Bustos.
== SYNOPSIS:
require 'extendmatrix'
v = Vector[1, 2, 3, 4]
v.magnitude # => 5.47722557505166
v.normalize # => Vector[0.182574185835055, 0.365148371670111, 0.547722557505166, 0.730296743340221]
# Backport from Ruby 1.9.2+
m = Matrix.build(4, 3){|i, j| i * 3 + j}
# => Matrix[[0, 1, 2], [3, 4, 5], [6, 7, 8], [9, 10, 11]]
# You could modify the matrix
m = Matrix.I(3)
m[0,1]=m[1,0]=0.5
m[0,2]=m[2,0]=0.7
m[1,2]=m[2,1]=0.9
m # => Matrix[[1, 0.5, 0.7], [0.5, 1, 0.9], [0.7, 0.9, 1]]
# Eigenvalues and EigenVectors. PCA at sight :)
m.eigenvaluesJacobi => Vector[0.523942339006665, 0.0632833995384682, 2.41277426145487]
m.cJacobiV
# => Matrix[[0.818814082563014, 0.249617871497675, 0.516947208547894], [-0.550168858227442, 0.598307531004925, 0.58253096551128], [-0.163883268313767, -0.761392813580323, 0.62723461144538]]
== REQUIREMENTS:* Only Ruby
== INSTALL:
* sudo gem install matrix-extensions
== LICENSE:
Copyright [2007] Cosmin Bonchis
Copyright [2010] Claudio BustosLicensed under the Apache License, Version 2.0 (the "License"); you may not use
this file except in compliance with the License. You may obtain a copy of the
License athttp://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed
under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
CONDITIONS OF ANY KIND, either express or implied. See the License for the
specific language governing permissions and limitations under the License.See LICENSE.txt for more details