Click or drag to resize

MatrixTTransposeAndMultiply(MatrixT) Method

Multiplies this matrix with transpose of 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> TransposeAndMultiply(
	Matrix<T> other
)

Parameters

other  MatrixT
The matrix to multiply with.

Return Value

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