public class Eigenvalues extends Object
Modifier and Type | Field and Description |
---|---|
protected int |
n |
protected int |
nev |
double[] |
value
The eigenvalues
|
Vector[] |
vector
The eigenvectors
|
Constructor and Description |
---|
Eigenvalues(int n)
Construct with the given dimensions
|
Modifier and Type | Method and Description |
---|---|
int |
getN() |
Eigenvalues |
largest(int nev)
Configure to compute the largest
nev values/vectors. |
static Eigenvalues |
of(Matrix A)
Get an object that can compute the eigendecomposition of the given
matrix.
|
Eigenvalues |
run()
Run the decomposition algorithm.
|
public Eigenvalues(int n)
n
- public static Eigenvalues of(Matrix A)
AllEigenvalues
, otherwise it will be a FewEigenvalues
.A
- public Eigenvalues largest(int nev)
nev
values/vectors.nev
- public Eigenvalues run()
public int getN()