Class EVSelected

java.lang.Object
com.polytechnik.utils.EVSelected
Direct Known Subclasses:
KGOEVSelection

public class EVSelected extends Object
A simple container to store an eigenvector.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    final double
    The eigenvalue of this state.
    final double[]
    Original eigenvector, an operator is extracted from it row by row.
    final int
    The index of original eigenvector.
    final int
    Original problem dimension if eVector was converted and the eVector.length is different.
  • Constructor Summary

    Constructors
    Constructor
    Description
    EVSelected(int ind, double[] eVector, double eLambda, int nOrig)
     
  • Method Summary

    Methods inherited from class java.lang.Object

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

    • ind

      public final int ind
      The index of original eigenvector.
    • eVector

      public final double[] eVector
      Original eigenvector, an operator is extracted from it row by row.
    • eLambda

      public final double eLambda
      The eigenvalue of this state.
    • nOrig

      public final int nOrig
      Original problem dimension if eVector was converted and the eVector.length is different.
  • Constructor Details

    • EVSelected

      public EVSelected(int ind, double[] eVector, double eLambda, int nOrig)