public class ARPACK
extends java.lang.Object
| Modifier and Type | Class and Description |
|---|---|
static class |
ARPACK.Ritz
Specify which of the Ritz values of OP to compute.
|
| Constructor and Description |
|---|
ARPACK() |
| Modifier and Type | Method and Description |
|---|---|
static smile.math.matrix.EVD |
eigen(smile.math.matrix.Matrix A,
int k,
ARPACK.Ritz ritz)
Find k approximate eigen pairs of a symmetric matrix by the
Lanczos algorithm.
|
static smile.math.matrix.EVD |
eigen(smile.math.matrix.Matrix A,
int k,
ARPACK.Ritz ritz,
double kappa,
int maxIter)
Find k approximate eigen pairs of a symmetric matrix by the
Lanczos algorithm.
|
static smile.math.matrix.EVD |
eigen(smile.math.matrix.Matrix A,
int k,
java.lang.String which)
Find k approximate eigen pairs of a symmetric matrix by the
Lanczos algorithm.
|
static smile.math.matrix.EVD |
eigen(smile.math.matrix.Matrix A,
int k,
java.lang.String which,
double kappa,
int maxIter)
Find k approximate eigen pairs of a symmetric matrix by the
Lanczos algorithm.
|
public static smile.math.matrix.EVD eigen(smile.math.matrix.Matrix A,
int k,
ARPACK.Ritz ritz)
k - Number of eigenvalues of OP to be computed. 0 < k < N.ritz - Specify which of the Ritz values to compute.public static smile.math.matrix.EVD eigen(smile.math.matrix.Matrix A,
int k,
java.lang.String which)
k - Number of eigenvalues of OP to be computed. 0 < k < N.which - Specify which of the Ritz values to compute.public static smile.math.matrix.EVD eigen(smile.math.matrix.Matrix A,
int k,
ARPACK.Ritz ritz,
double kappa,
int maxIter)
k - Number of eigenvalues of OP to be computed. 0 < k < N.ritz - Specify which of the Ritz values to compute.kappa - Relative accuracy of ritz values acceptable as eigenvalues.maxIter - Maximum number of iterations.public static smile.math.matrix.EVD eigen(smile.math.matrix.Matrix A,
int k,
java.lang.String which,
double kappa,
int maxIter)
k - Number of eigenvalues of OP to be computed. 0 < NEV < N.which - Specify which of the Ritz values to compute.kappa - Relative accuracy of ritz values acceptable as eigenvalues.maxIter - Maximum number of iterations.