Matrix.Multiply3x Method

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

Parameters

a
double[,]

The matrix

b
double[]

The scalar value

Return Value

double[]

The multiplication result.

.NET Framework

Supported in: 4.8

In this article

Definition