MatrixMultiplyTranspose(Matrix, Double) Method

Multiplies this matrix by the transposed argument.

Definition

Namespace: Austra.Library
Assembly: Austra.Library (in Austra.Library.dll) Version: 2.5.0+d1268756e036101f601080f153b3997e72fc912d
C#
public Matrix MultiplyTranspose(
	Matrix m,
	double[] result
)

Parameters

m  Matrix
Second operand.
result  Double
Preallocated buffer for the result.

Return Value

Matrix
The multiplication by the transposed argument.

Remarks

Calculates this * m'.

This method allows preallocating a buffer for the result. This can be useful when the same operation is performed multiple times. The buffer size must be this.Rows * m.Rows.

See Also