ComplexMatrix.ElementDivide Method |
Creates a new
ComplexMatrix which is the element-by-element division of the two given matrices.
Namespace:
AGI.Foundation.Coordinates
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic static ComplexMatrix ElementDivide(
ComplexMatrix dividend,
ComplexMatrix divisor
)
Public Shared Function ElementDivide (
dividend As ComplexMatrix,
divisor As ComplexMatrix
) As ComplexMatrix
public:
static ComplexMatrix^ ElementDivide(
ComplexMatrix^ dividend,
ComplexMatrix^ divisor
)
static member ElementDivide :
dividend : ComplexMatrix *
divisor : ComplexMatrix -> ComplexMatrix
Parameters
- dividend
- Type: AGI.Foundation.Coordinates.ComplexMatrix
The ComplexMatrix whose elements will form the numerators. - divisor
- Type: AGI.Foundation.Coordinates.ComplexMatrix
The ComplexMatrix whose elements will form the denominators.
Return Value
Type:
ComplexMatrixA
ComplexMatrix which equals the element division of the two given matrices.
Exceptions
See Also