Click or drag to resize

ComplexMatrixMultiply Method (ComplexMatrix, ComplexMatrix)

Creates a ComplexMatrix which is the linear algebra multiplication of the two given matrices.

Namespace:  AGI.Foundation.Coordinates
Assembly:  AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.1.418.0 (24.1.418.0)
Syntax
public static ComplexMatrix Multiply(
	ComplexMatrix multiplicand,
	ComplexMatrix multiplier
)

Parameters

multiplicand
Type: AGI.Foundation.CoordinatesComplexMatrix
The first ComplexMatrix to multiply.
multiplier
Type: AGI.Foundation.CoordinatesComplexMatrix
The second ComplexMatrix to multiply.

Return Value

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