Method: Matrix#cJacobiV
- Defined in:
- lib/extendmatrix.rb
#cJacobiV(tol = 1.0e-10) ⇒ Object
Returns the orthogonal matrix obtained with the Jacobi eigenvalue algorithm. The columns of V are the eigenvector.
1111 1112 1113 |
# File 'lib/extendmatrix.rb', line 1111 def cJacobiV(tol = 1.0e-10) cJacobi(tol)[1] end |