Matrix.Multiply (Double(,), Double()) Method

Matrix by scalar multiplication.
Public Shared Function Multiply( _ 
ByVal a As Double(,), _ 
ByVal b As Double() _ 
) As Double()
This language is not supported or no code example is available.
public static double[] Multiply( 
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