org.ejml.data
Class Eigenpair

java.lang.Object
  extended by org.ejml.data.Eigenpair

public class Eigenpair
extends Object

An eigenpair is a set composed of an eigenvalue and an eigenvector. In this library since only real matrices are supported, all eigenpairs are real valued.

Author:
Peter Abeles

Field Summary
 double value
           
 DenseMatrix64F vector
           
 
Constructor Summary
Eigenpair(double value, DenseMatrix64F vector)
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

value

public double value

vector

public DenseMatrix64F vector
Constructor Detail

Eigenpair

public Eigenpair(double value,
                 DenseMatrix64F vector)


Copyright © 2012. All Rights Reserved.