public class Eig extends Object
D = X-1 AX
is diagonal. The columns of X are eigenvectors of A corresponding
to the diagonal elements of D. Eig implements X as a Zmat and
D as a Zdiagmat.
Warning: if A is defective rounding error will allow Eig to compute a set of eigevectors. However, the matrix X will be ill conditioned.
public Zmat X
public Zdiagmat D
public Eig(Zmat A) throws JampackException
A - The matrix whose decomposition is to be
computedJampackException - Thrown if A is not square. Copyright © 2015. All rights reserved.