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 FloatComplexMatrix QM(
	FloatComplexMatrix M
)
Visual Basic (Declaration)
Public Function QM ( _
	M As FloatComplexMatrix _
) As FloatComplexMatrix
Visual C++
public:
FloatComplexMatrix^ QM(
	FloatComplexMatrix^ 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