Packages

c

scalation.linalgebra

Eigenvector

class Eigenvector extends Eigen with Error

The Eigenvector class is used to find the eigenvectors of an 'n' by 'n' matrix 'a' by solving equations of the form

(a - eI)v = 0

where 'e' is the eigenvalue and 'v' is the eigenvector. Place the eigenvectors in a matrix column-wise.

Linear Supertypes
Error, Eigen, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Eigenvector
  2. Error
  3. Eigen
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Eigenvector(a: MatrixD, _e: VectorD = null)

    a

    the matrix whose eigenvectors are sought

    _e

    the vector of eigenvalues of matrix a

Value Members

  1. final def flaw(method: String, message: String): Unit

    Show the flaw by printing the error message.

    Show the flaw by printing the error message.

    method

    the method where the error occurred

    message

    the error message

    Definition Classes
    Error
  2. def getV: MatrixD

    Get the eigenvector 'v' matrix.