|  | FloatCsrSparseMatrixMultiply(FloatCsrSparseMatrix, Single) Operator | 
            Multiply a scalar and a sparse matrix.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
 Syntax
Syntaxpublic static FloatCsrSparseMatrix operator *(
	FloatCsrSparseMatrix A,
	float s
)
Public Shared Operator * ( 
	A As FloatCsrSparseMatrix,
	s As Single
) As FloatCsrSparseMatrix
public:
static FloatCsrSparseMatrix^ operator *(
	FloatCsrSparseMatrix^ A, 
	float s
)
static let inline (*)
        A : FloatCsrSparseMatrix * 
        s : float32  : FloatCsrSparseMatrixParameters
- A  FloatCsrSparseMatrix
- A sparse matrix.
- s  Single
- A scalar.
Return Value
FloatCsrSparseMatrixA sparse matrix 
B where 
B[i,j] = A[i,j] * s.
 See Also
See Also