Click or drag to resize

MatrixTTransposeThisAndMultiply(MatrixT, MatrixT) Method

Multiplies the transpose of this matrix with another matrix and places the results into the result matrix.

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public void TransposeThisAndMultiply(
	Matrix<T> other,
	Matrix<T> result
)

Parameters

other  MatrixT
The matrix to multiply with.
result  MatrixT
The result of the multiplication.
Exceptions
ExceptionCondition
ArgumentExceptionIf this.Rows != other.RowCount.
ArgumentExceptionIf the result matrix's dimensions are not the this.ColumnCount x other.ColumnCount.
See Also