Click or drag to resize

MatrixTTransposeThisAndMultiply(MatrixT) Method

Multiplies the transpose of this matrix with another matrix and returns the result.

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

Parameters

other  MatrixT
The matrix to multiply with.

Return Value

MatrixT
The result of the multiplication.
Exceptions
ExceptionCondition
ArgumentExceptionIf this.Rows != other.RowCount.
See Also