Click or drag to resize

ComplexMatrix.PreMultiply Method

Creates a ComplexMatrix which is the linear algebra multiplication of the given matrix times this 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 PreMultiply(
	ComplexMatrix multiplicand
)

Parameters

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

Return Value

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