SparseSquareMatrix.Multiply Operator (RowVector, SparseSquareMatrix) |
Multiplies a sparse matrix by a row vector.
Namespace:
Meta.Numerics.Matrices
Assembly:
Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntaxpublic static RowVector operator *(
RowVector v,
SparseSquareMatrix A
)
Public Shared Operator * (
v As RowVector,
A As SparseSquareMatrix
) As RowVector
public:
static RowVector^ operator *(
RowVector^ v,
SparseSquareMatrix^ A
)
static let inline (*)
v : RowVector *
A : SparseSquareMatrix : RowVector
Parameters
- v
- Type: Meta.Numerics.Matrices.RowVector
The row vector. - A
- Type: Meta.Numerics.Matrices.SparseSquareMatrix
The matrix.
Return Value
Type:
RowVectorThe product row vector.
See Also