Click or drag to resize

ComplexMatrixElementMultiply Method (ComplexMatrix)

Creates a ComplexMatrix which is the element-by-element multiplication of this matrix times the given matrix.

Namespace:  AGI.Foundation.Coordinates
Assembly:  AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.1.418.0 (24.1.418.0)
Syntax
public ComplexMatrix ElementMultiply(
	ComplexMatrix matrix
)

Parameters

matrix
Type: AGI.Foundation.CoordinatesComplexMatrix
The ComplexMatrix to multiply with this matrix.

Return Value

Type: ComplexMatrix
A ComplexMatrix which is the multiplication of this matrix and the given matrix.
Exceptions
ExceptionCondition
ArgumentNullException Thrown when matrix is .
InvalidOperationException Thrown when the dimensions of matrix do not match the dimensions of this ComplexMatrix.
See Also