.NET Matrix Library
BalanceType Enumeration
See Also  Send Feedback



Indicates how the input matrix should be diagonally scaled and/or permuted to improve the conditioning of its eigenvalues.

Syntax

Visual Basic (Declaration) 
Public Enum BalanceType 
   Inherits System.Enum
Visual Basic (Usage)Copy Code
Dim instance As BalanceType
C# 
public enum BalanceType : System.Enum 
C++/CLI 
public enum class BalanceType : public System.Enum 

Members

MemberDescription
BothBoth diagonally scale and permute.
NoneDo not diagonally scale or permute.
PermutePerform permutations to make the matrix more nearly upper triangular. Do not diagonally scale.
ScaleDiagonally scale the matrix to make its rows and columns more equal in norm. Do not permute.

Remarks

BalanceType enumeration is used in Eigen and CEigen constructor in order to indicate the type of balancing that will be used.

Requirements

Target Platforms: Windows 2000, Windows XP, Windows Server 2003 family, Windows Vista, Windows Server 2008 family, Windows 7

See Also

.NET Matrix Library