MatrixElementDivide Method (Matrix6By6, Matrix) | 
 
            Creates a new 
Matrix 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 Matrix ElementDivide(
	Matrix6By6 dividend,
	Matrix divisor
)
Public Shared Function ElementDivide ( 
	dividend As Matrix6By6,
	divisor As Matrix
) As Matrix
public:
static Matrix^ ElementDivide(
	Matrix6By6^ dividend, 
	Matrix^ divisor
)
static member ElementDivide : 
        dividend : Matrix6By6 * 
        divisor : Matrix -> Matrix 
Parameters
- dividend
 - Type: AGI.Foundation.CoordinatesMatrix6By6
The Matrix6By6 whose elements will form the numerators. - divisor
 - Type: AGI.Foundation.CoordinatesMatrix
The Matrix whose elements will form the denominators. 
Return Value
Type: 
MatrixA 
Matrix which equals the element division of the two given matrices.
See Also