  | DoubleComplexGSVDecompServerGetDecomp Method | 
            Computes the general singular value decomposition
            U'AQ = D1(0 R), V'BQ = D2(0 R)
            for two matrices A and B, optionally computing U, V, and Q.
            A and B must have the same number of columns.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic DoubleComplexGSVDecomp GetDecomp(
	DoubleComplexMatrix A,
	DoubleComplexMatrix B
)
Public Function GetDecomp ( 
	A As DoubleComplexMatrix,
	B As DoubleComplexMatrix
) As DoubleComplexGSVDecomp
public:
DoubleComplexGSVDecomp^ GetDecomp(
	DoubleComplexMatrix^ A, 
	DoubleComplexMatrix^ B
)
member GetDecomp : 
        A : DoubleComplexMatrix * 
        B : DoubleComplexMatrix -> DoubleComplexGSVDecomp Parameters
- A  DoubleComplexMatrix
 - A matrix.
 - B  DoubleComplexMatrix
 - A matrix.
 
Return Value
DoubleComplexGSVDecomp
Exceptions
Remarks
            If the this instances property Compute[Z] is true the matrix Z 
            will be computed, where Z is one of U, V, or Q.
            
See Also