|  | DoubleSymCsrSparseMatrixMultiply Operator | 
            Multiply a scalar and a symmetric sparse matrix.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
 Syntax
Syntaxpublic static DoubleSymCsrSparseMatrix operator *(
	double s,
	DoubleSymCsrSparseMatrix A
)
Public Shared Operator * ( 
	s As Double,
	A As DoubleSymCsrSparseMatrix
) As DoubleSymCsrSparseMatrix
public:
static DoubleSymCsrSparseMatrix^ operator *(
	double s, 
	DoubleSymCsrSparseMatrix^ A
)
static let inline (*)
        s : float * 
        A : DoubleSymCsrSparseMatrix  : DoubleSymCsrSparseMatrixParameters
- s  Double
- A scalar.
- A  DoubleSymCsrSparseMatrix
- A symmetric sparse matrix.
Return Value
DoubleSymCsrSparseMatrixA symmetric sparse matrix 
B where 
B[i,j] = s * A[i,j].
 See Also
See Also