MatrixMultiplyTranspose(Matrix, Double) Method
Multiplies this matrix by the transposed argument.
Namespace: Austra.LibraryAssembly: Austra.Library (in Austra.Library.dll) Version: 2.5.0+44e7797405725ef3cf24b3ff0eba94ce6c649601
public Matrix MultiplyTranspose(
Matrix m,
double[] result
)
- m Matrix
- Second operand.
- result Double
- Preallocated buffer for the result.
MatrixThe multiplication by the transposed argument.
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.