Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Geometry Namespace / Matrix Class / Multiply3x3 Method
The left matrix
The right matrix

In This Topic
    Multiply3x3 Method
    In This Topic
    Matrix by matrix multiplication.
    Syntax
    'Declaration
     
    Public Shared Function Multiply3x3( _
       ByVal a(,) As Double, _
       ByVal b(,) As Double _
    ) As Double(,)
    public static double[,] Multiply3x3( 
       double[,] a,
       double[,] b
    )

    Parameters

    a
    The left matrix
    b
    The right matrix

    Return Value

    The multiplication result.
    See Also