Computes the inner product of the orthogonal matrix Q and a given matrix.

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

Syntax

C#
public DoubleComplexMatrix QM(
	DoubleComplexMatrix M
)
Visual Basic (Declaration)
Public Function QM ( _
	M As DoubleComplexMatrix _
) As DoubleComplexMatrix
Visual C++
public:
DoubleComplexMatrix^ QM(
	DoubleComplexMatrix^ M
)

Return Value

The inner product of the matrix Q and the matrix M.

Exceptions

ExceptionCondition
CenterSpace.NMath.Core..::.MismatchedSizeExceptionThrown if the number of rows in M is not equal to the minimum of the number of rows and columns in the factored matrix.

See Also