Computes the general singular value decomposition U'AQ = D1(0 R), V'BQ = D2(0 R) for two matrices A and B. U, V, and Q are computed. A and B must have the same number of columns.

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

Syntax

C#
public FloatComplexGSVDecomp(
	FloatComplexMatrix A,
	FloatComplexMatrix B
)
Visual Basic (Declaration)
Public Sub New ( _
	A As FloatComplexMatrix, _
	B As FloatComplexMatrix _
)
Visual C++
public:
FloatComplexGSVDecomp(
	FloatComplexMatrix^ A, 
	FloatComplexMatrix^ B
)

Exceptions

ExceptionCondition
CenterSpace.NMath.Core..::.MismatchedSizeExceptionThrown if A and B do not have the same number of columns.

See Also