Constructs a DoubleComplexEigDecompServer with the specified options.

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

Syntax

C#
public DoubleComplexEigDecompServer(
	bool computeLeftVectors,
	bool computeRightVectors,
	BalanceOption balance
)
Visual Basic (Declaration)
Public Sub New ( _
	computeLeftVectors As Boolean, _
	computeRightVectors As Boolean, _
	balance As BalanceOption _
)
Visual C++
public:
DoubleComplexEigDecompServer(
	bool computeLeftVectors, 
	bool computeRightVectors, 
	BalanceOption balance
)

Parameters

computeLeftVectors
Type: System..::.Boolean
Set to true if left eigenvectors are desired.
computeRightVectors
Type: System..::.Boolean
Set to true if right eigenvectors are desired.
balance
Type: CenterSpace.NMath.Matrix..::.BalanceOption
The preliminary balance option. Values are given in the BalanceOption enumeration: None, Scale, Permute, Both.

See Also