ComponentOne Bitmap for UWP
C1.UWP.DX Assembly / C1.Util.DX Namespace / Matrix4x4 Structure / HadamardProduct Method
The first matrix to multiply.
The second matrix to multiply.

In This Topic
    HadamardProduct Method (Matrix4x4)
    In This Topic
    Determines the Hadamard (element-wise) product of two matrices.
    Syntax
    'Declaration
     
    Public Shared Function HadamardProduct( _
       ByVal left As Matrix4x4, _
       ByVal right As Matrix4x4 _
    ) As Matrix4x4
    public static Matrix4x4 HadamardProduct( 
       Matrix4x4 left,
       Matrix4x4 right
    )

    Parameters

    left
    The first matrix to multiply.
    right
    The second matrix to multiply.

    Return Value

    The Hadamard (element-wise) product of the two matrices.
    See Also