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