Enumeration for specifying balancing options in eigenvalue decompositions.

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

Syntax

C#
public enum BalanceOption
Visual Basic (Declaration)
Public Enumeration BalanceOption
Visual C++
public enum class BalanceOption

Members

Member nameDescription
None
Perform no balancing operations.
Permute
Permute rows and columns to make the matrix more nearly upper triangular.
Scale
Apply a diagonal similarity transformation to make the matrix rows and columns closer in norm, and the condition numbers of eigenvalues and eigenvectors smaller.
Both
Perform both permuting and scaling.

See Also