Click or drag to resize

ComplexMatrix.PostMultiply Method

Creates a ComplexMatrix which is the linear algebra multiplication of this matrix times the given matrix.

Namespace:  AGI.Foundation.Coordinates
Assembly:  AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntax
public ComplexMatrix PostMultiply(
	ComplexMatrix multiplier
)

Parameters

multiplier
Type: AGI.Foundation.Coordinates.ComplexMatrix
The ComplexMatrix to multiply this matrix by.

Return Value

Type: ComplexMatrix
A ComplexMatrix which is the multiplication of this matrix by the given matrix.
Exceptions
ExceptionCondition
ArgumentNullException Thrown when multiplier is null.
InvalidOperationException Thrown when the row dimension of multiplier does not match the column dimension of this ComplexMatrix.
See Also