Multiply
01 Syntax
Microsoft.VisualBasic.Math.LinearAlgebra.Matrix.Multiply
02 Methods
| Name | Overloads | Summary |
|---|---|---|
| RowMultiply | 1 | the vector size is equals to the matrix rows, each element in target vector is multiply to each row in matrix |
| ColumnMultiply | 1 | the vector size is equals to the matrix columns, each element in target vector is multiply to each column in matrix |
03 Members
RowMultiply(GeneralMatrix, Vector)
the vector size is equals to the matrix rows, each element in target vector is multiply to each row in matrix
Parameters
| Name | Type | Description |
|---|---|---|
m | GeneralMatrix | - |
v | Vector | - |
ColumnMultiply(GeneralMatrix, Vector)
the vector size is equals to the matrix columns, each element in target vector is multiply to each column in matrix
Parameters
| Name | Type | Description |
|---|---|---|
m | GeneralMatrix | - |
v | Vector | - |