Matrix.Multiply3x3 Method

Matrix by matrix multiplication.
Public Shared Function Multiply3x3( _ 
ByVal a As Double(,), _ 
ByVal b As Double(,) _ 
) As Double(,)
This language is not supported or no code example is available.
public static double[,] Multiply3x3( 
double[,] a
double[,] b 
)
This language is not supported or no code example is available.

Parameters

a
double[,]

The left matrix

b
double[,]

The right matrix

Return Value

double[,]

The multiplication result.

.NET Framework

Supported in: 4.8

In this article

Definition