Class SymmetricQREigenHelper_DDRM
java.lang.Object
org.ejml.dense.row.decomposition.eig.symm.SymmetricQREigenHelper_DDRM
public class SymmetricQREigenHelper_DDRM
extends java.lang.Object
A helper class for the symmetric matrix implicit QR algorithm for eigenvalue decomposition.
Performs most of the basic operations needed to extract eigenvalues and eigenvectors.
-
Field Summary
Fields Modifier and Type Field Description protected double[]diagprotected EigenvalueSmall_F64eigenSmallprotected intlastExceptionalprotected intNprotected intnumExceptionalprotected intnumSplitsprotected double[]offprotected @Nullable org.ejml.data.DMatrixRMajQprotected java.util.Randomrandprotected int[]splitsprotected intstepsprotected intx1protected intx2 -
Constructor Summary
Constructors Constructor Description SymmetricQREigenHelper_DDRM() -
Method Summary
Modifier and Type Method Description doublecomputeShift()doublecomputeWilkinsonShift()double[]copyDiag(double[] ret)double[]copyEigenvalues(double[] ret)double[]copyOff(double[] ret)protected voidcreateBulge(int x1, double p, boolean byAngle)Performs a similar transform on A-pIprotected voidcreateBulge2by2(int x1, double p, boolean byAngle)protected voideigenvalue2by2(int x1)Computes the eigenvalue of the 2 by 2 matrix.voidexceptionalShift()Perform a shift in a random direction that is of the same magnitude as the elements in the matrix.intgetMatrixSize()voidincrementSteps()voidinit(double[] diag, double[] off, int numCols)Sets up and declares internal data structures.protected booleanisZero(int index)Checks to see if the specified off diagonal element is zero using a relative metric.booleannextSplit()Tells it to process the submatrix at the next split.protected voidperformImplicitSingleStep(double lambda, boolean byAngle)voidprintMatrix()protected voidremoveBulge(int x1)protected voidremoveBulgeEnd(int x1)Rotator to remove the bulgevoidreset(int N)Sets the size of the matrix being decomposed, declares new memory if needed, and sets all helper functions to their initial value.voidresetSteps()voidsetQ(org.ejml.data.DMatrixRMaj q)voidsetSubmatrix(int x1, int x2)Sets which submatrix is being processed.double[]swapDiag(double[] diag)Exchanges the internal array of the diagonal elements for the provided one.double[]swapOff(double[] off)Exchanges the internal array of the off diagonal elements for the provided one.protected voidupdateQ(int m, int n, double c, double s)
-
Field Details
-
rand
protected java.util.Random rand -
steps
protected int steps -
numExceptional
protected int numExceptional -
lastExceptional
protected int lastExceptional -
eigenSmall
-
Q
@Nullable protected @Nullable org.ejml.data.DMatrixRMaj Q -
N
protected int N -
diag
protected double[] diag -
off
protected double[] off -
x1
protected int x1 -
x2
protected int x2 -
splits
protected int[] splits -
numSplits
protected int numSplits
-
-
Constructor Details
-
SymmetricQREigenHelper_DDRM
public SymmetricQREigenHelper_DDRM()
-
-
Method Details
-
printMatrix
public void printMatrix() -
setQ
public void setQ(org.ejml.data.DMatrixRMaj q) -
incrementSteps
public void incrementSteps() -
init
public void init(double[] diag, double[] off, int numCols)Sets up and declares internal data structures.- Parameters:
diag- Diagonal elements from tridiagonal matrix. Modified.off- Off diagonal elements from tridiagonal matrix. Modified.numCols- number of columns (and rows) in the matrix.
-
swapDiag
public double[] swapDiag(double[] diag)Exchanges the internal array of the diagonal elements for the provided one. -
swapOff
public double[] swapOff(double[] off)Exchanges the internal array of the off diagonal elements for the provided one. -
reset
public void reset(int N)Sets the size of the matrix being decomposed, declares new memory if needed, and sets all helper functions to their initial value. -
copyDiag
public double[] copyDiag(double[] ret) -
copyOff
public double[] copyOff(double[] ret) -
copyEigenvalues
public double[] copyEigenvalues(double[] ret) -
setSubmatrix
public void setSubmatrix(int x1, int x2)Sets which submatrix is being processed.- Parameters:
x1- Lower bound, inclusive.x2- Upper bound, inclusive.
-
isZero
protected boolean isZero(int index)Checks to see if the specified off diagonal element is zero using a relative metric. -
performImplicitSingleStep
protected void performImplicitSingleStep(double lambda, boolean byAngle) -
updateQ
protected void updateQ(int m, int n, double c, double s) -
createBulge
protected void createBulge(int x1, double p, boolean byAngle)Performs a similar transform on A-pI -
createBulge2by2
protected void createBulge2by2(int x1, double p, boolean byAngle) -
removeBulge
protected void removeBulge(int x1) -
removeBulgeEnd
protected void removeBulgeEnd(int x1)Rotator to remove the bulge -
eigenvalue2by2
protected void eigenvalue2by2(int x1)Computes the eigenvalue of the 2 by 2 matrix. -
exceptionalShift
public void exceptionalShift()Perform a shift in a random direction that is of the same magnitude as the elements in the matrix. -
nextSplit
public boolean nextSplit()Tells it to process the submatrix at the next split. Should be called after the current submatrix has been processed. -
computeShift
public double computeShift() -
computeWilkinsonShift
public double computeWilkinsonShift() -
getMatrixSize
public int getMatrixSize() -
resetSteps
public void resetSteps()
-