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