RowVectorMultiply Operator (RowVector, ColumnVector) |
Computes the inner (scalar or dot) product of a row and a column vector.
Namespace:
Meta.Numerics.Matrices
Assembly:
Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax public static double operator *(
RowVector v,
ColumnVector u
)
Public Shared Operator * (
v As RowVector,
u As ColumnVector
) As Double
public:
static double operator *(
RowVector^ v,
ColumnVector^ u
)
static let inline (*)
v : RowVector *
u : ColumnVector : float
Parameters
- v
- Type: Meta.Numerics.MatricesRowVector
The row vector. - u
- Type: Meta.Numerics.MatricesColumnVector
The column vector.
Return Value
Type:
DoubleThe value of the scalar product.
See Also