MatrixElementMultiply Method (Matrix3By3, Matrix) |
Creates a new
Matrix which is the element-by-element multiplication of
the two given matrices.
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 Matrix ElementMultiply(
Matrix3By3 multiplicand,
Matrix multiplier
)
Public Shared Function ElementMultiply (
multiplicand As Matrix3By3,
multiplier As Matrix
) As Matrix
public:
static Matrix^ ElementMultiply(
Matrix3By3 multiplicand,
Matrix^ multiplier
)
static member ElementMultiply :
multiplicand : Matrix3By3 *
multiplier : Matrix -> Matrix
Parameters
- multiplicand
- Type: AGI.Foundation.CoordinatesMatrix3By3
The first Matrix3By3 to multiply. - multiplier
- Type: AGI.Foundation.CoordinatesMatrix
The second Matrix to multiply.
Return Value
Type:
MatrixA
Matrix which equals the element multiplication of the two given matrices.
See Also