ComplexMatrixElementDivideAssign Method |
Assigns the elements of quotient to the element-wise division
of dividend divided by divisor.
Namespace:
AGI.Foundation.Coordinates
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public static void ElementDivideAssign(
ComplexMatrix dividend,
ComplexMatrix divisor,
ComplexMatrix quotient
)
Public Shared Sub ElementDivideAssign (
dividend As ComplexMatrix,
divisor As ComplexMatrix,
quotient As ComplexMatrix
)
public:
static void ElementDivideAssign(
ComplexMatrix^ dividend,
ComplexMatrix^ divisor,
ComplexMatrix^ quotient
)
static member ElementDivideAssign :
dividend : ComplexMatrix *
divisor : ComplexMatrix *
quotient : ComplexMatrix -> unit
Parameters
- dividend
- Type: AGI.Foundation.CoordinatesComplexMatrix
The ComplexMatrix whose elements will form the numerators. - divisor
- Type: AGI.Foundation.CoordinatesComplexMatrix
The ComplexMatrix whose elements will form the denominators. - quotient
- Type: AGI.Foundation.CoordinatesComplexMatrix
The ComplexMatrix to use to store the result of the operation.
Exceptions See Also