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