Class DoubleEigDecomp computes the eigenvalues and left and right eigenvectors of a general matrix, with preliminary balancing.

Namespace:  CenterSpace.NMath.Matrix
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
[SerializableAttribute]
public class DoubleEigDecomp : ICloneable
Visual Basic (Declaration)
<SerializableAttribute> _
Public Class DoubleEigDecomp _
	Implements ICloneable
Visual C++
[SerializableAttribute]
public ref class DoubleEigDecomp : ICloneable

Remarks

Balancing a matrix means permuting the rows and columns to make it more nearly upper triangular, and applying a diagonal similarity transformation to make its rows and columns closer in norm and the condition numbers of its eigenvalues and eigenvectors smaller.

Inheritance Hierarchy

System..::.Object
  CenterSpace.NMath.Matrix..::.DoubleEigDecomp

See Also