org.ejml.alg.dense.decomposition.eig
Class EigenvalueSmall

java.lang.Object
  extended by org.ejml.alg.dense.decomposition.eig.EigenvalueSmall

public class EigenvalueSmall
extends Object

Author:
Peter Abeles

Field Summary
 Complex64F value0
           
 Complex64F value1
           
 
Constructor Summary
EigenvalueSmall()
           
 
Method Summary
 void symm2x2_fast(double a11, double a12, double a22)
          Compute the symmetric eigenvalue using a slightly safer technique
 void value2x2_fast(double a11, double a12, double a21, double a22)
          Computes the eigenvalues of a 2 by 2 matrix using a faster but more prone to errors method.
 void value2x2(double a11, double a12, double a21, double a22)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

value0

public Complex64F value0

value1

public Complex64F value1
Constructor Detail

EigenvalueSmall

public EigenvalueSmall()
Method Detail

value2x2

public void value2x2(double a11,
                     double a12,
                     double a21,
                     double a22)

value2x2_fast

public void value2x2_fast(double a11,
                          double a12,
                          double a21,
                          double a22)
Computes the eigenvalues of a 2 by 2 matrix using a faster but more prone to errors method. This is the typical method.


symm2x2_fast

public void symm2x2_fast(double a11,
                         double a12,
                         double a22)
Compute the symmetric eigenvalue using a slightly safer technique



Copyright © 2012. All Rights Reserved.