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.MatrixAssembly: NMath (in NMath.dll) Version: 5.1.0.0
Syntax
| C# |
|---|
public DoubleComplexGSVDecomp( DoubleComplexMatrix A, DoubleComplexMatrix B ) |
| Visual Basic (Declaration) |
|---|
Public Sub New ( _ A As DoubleComplexMatrix, _ B As DoubleComplexMatrix _ ) |
| Visual C++ |
|---|
public: DoubleComplexGSVDecomp( DoubleComplexMatrix^ A, DoubleComplexMatrix^ B ) |
Parameters
- A
- Type: CenterSpace.NMath.Core..::.DoubleComplexMatrix
A matrix.
- B
- Type: CenterSpace.NMath.Core..::.DoubleComplexMatrix
A matrix.
Exceptions
| Exception | Condition |
|---|---|
| CenterSpace.NMath.Core..::.MismatchedSizeException | Thrown if A and B do not have the same number of columns. |