Class EigenvalueSmall_F32


  • public class EigenvalueSmall_F32
    extends java.lang.Object
    • Field Summary

      Fields 
      Modifier and Type Field Description
      org.ejml.data.Complex_F32 value0  
      org.ejml.data.Complex_F32 value1  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void symm2x2_fast​(float a11, float a12, float a22)
      Compute the symmetric eigenvalue using a slightly safer technique
      void value2x2​(float a11, float a12, float a21, float a22)  
      void value2x2_fast​(float a11, float a12, float a21, float a22)
      Computes the eigenvalues of a 2 by 2 matrix using a faster but more prone to errors method.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • value0

        public org.ejml.data.Complex_F32 value0
      • value1

        public org.ejml.data.Complex_F32 value1
    • Constructor Detail

      • EigenvalueSmall_F32

        public EigenvalueSmall_F32()
    • Method Detail

      • value2x2

        public void value2x2​(float a11,
                             float a12,
                             float a21,
                             float a22)
      • value2x2_fast

        public void value2x2_fast​(float a11,
                                  float a12,
                                  float a21,
                                  float 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​(float a11,
                                 float a12,
                                 float a22)
        Compute the symmetric eigenvalue using a slightly safer technique