SparseSquareMatrixMultiply(RowVector, SparseSquareMatrix) Operator
            Multiplies a sparse matrix by a row vector.
            
Namespace: Meta.Numerics.MatricesAssembly: Meta.Numerics (in Meta.Numerics.dll) Version: 4.2.0+6d77d64445f7d5d91b12e331399c4362ecb25333
public 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
- v  RowVector
 - The row vector.
 - A  SparseSquareMatrix
 - The matrix.
 
RowVectorThe product row vector.