Click or drag to resize

DoubleGSVDecomp(DoubleMatrix, DoubleMatrix, Boolean, Boolean, Boolean) Constructor

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 DoubleGSVDecomp(
	DoubleMatrix A,
	DoubleMatrix B,
	bool computeU,
	bool computeV,
	bool computeQ
)

Parameters

A  DoubleMatrix
A matrix.
B  DoubleMatrix
A matrix.
computeU  Boolean
If true the matrix U will be computed.
computeV  Boolean
If true the matrix V will be computed.
computeQ  Boolean
If true the matrix Q will be computed.
Exceptions
ExceptionCondition
MismatchedSizeExceptionThrown if A and B do not have the same number of columns.
See Also