Click or drag to resize

FloatComplexGSVDecompServerGetDecomp 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.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public FloatComplexGSVDecomp GetDecomp(
	FloatComplexMatrix A,
	FloatComplexMatrix B
)

Parameters

A  FloatComplexMatrix
A matrix.
B  FloatComplexMatrix
A matrix.

Return Value

FloatComplexGSVDecomp
Exceptions
ExceptionCondition
MismatchedSizeExceptionThrown if A and B do not have the same number of columns.
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