Packages

c

scalation.linalgebra

EigenvalueSym

class EigenvalueSym extends Eigen with Error

The EigenvalueSym class is used to find the eigenvalues of an 'n' by 'n' symmetric matrix 'a' using an iterative technique, the Symmetric 'QR' Algorithm.

See also

Algorithm 8.3.3 in Matrix Computations. Caveats: (1) it will not handle eigenvalues that are complex numbers, (2) it uses a simple shifting strategy that may slow convergence.

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

Instance Constructors

  1. new EigenvalueSym(a: MatrixD)

    a

    the symmetric matrix whose eigenvalues are sought

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 getE: VectorD

    Get the eigenvalue 'e' vector.

  3. val m: Int
  4. var p: Int
  5. var q: Int