Creates a DoubleComplexGSVDecompServer for computing general singular value decomposition for matrices A and B, where U, V, Q in the decomposition U'AQ = D1(0 R), V'BQ = D2(0 R) are optionally computed.

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

Syntax

C#
public DoubleComplexGSVDecompServer(
	bool computeU,
	bool computeV,
	bool computeQ
)
Visual Basic (Declaration)
Public Sub New ( _
	computeU As Boolean, _
	computeV As Boolean, _
	computeQ As Boolean _
)
Visual C++
public:
DoubleComplexGSVDecompServer(
	bool computeU, 
	bool computeV, 
	bool computeQ
)

Parameters

computeU
Type: System..::.Boolean
If true U will be computed.
computeV
Type: System..::.Boolean
If true V will be computed.
computeQ
Type: System..::.Boolean
If true Q will be computed.

See Also