Click or drag to resize

FloatCsrSparseMatrixMultiply(Single, FloatCsrSparseMatrix) Operator

Multiply a scalar and a sparse matrix.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static FloatCsrSparseMatrix operator *(
	float s,
	FloatCsrSparseMatrix A
)

Parameters

s  Single
A scalar.
A  FloatCsrSparseMatrix
A sparse matrix.

Return Value

FloatCsrSparseMatrix
A sparse matrix B where B[i,j] = s * A[i,j].
See Also