.NET Matrix Library
Multiplication(Double,SparseMatrix) Operator
See Also  Send Feedback


scalar
A double representing a scalar on the left side of the multiplication operator.
A
A SparseMatrix Class instance on the right of the multiplication operator.
Multiplies a scalar by a sparse matrix.

Syntax

Visual Basic (Declaration) 
Overloads Public Operator *( _
   ByVal scalar As Double, _
   ByVal A As SparseMatrix _
) As SparseMatrix
C# 
public SparseMatrix operator *( 
   double scalar,
   SparseMatrix A
)
C++/CLI 
public:
SparseMatrix^ operator *( 
   double scalar,
   SparseMatrix^ A
)

Parameters

scalar
A double representing a scalar on the left side of the multiplication operator.
A
A SparseMatrix Class instance on the right of the multiplication operator.

Return Value

A SparseMatrix Class object that represents the matrix-scalar product.

Requirements

Target Platforms: Windows 2000, Windows XP, Windows Server 2003 family, Windows Vista, Windows Server 2008 family, Windows 7

See Also

.NET Matrix Library