Click or drag to resize

FloatCsrSparseMatrixMultiply(FloatCsrSparseMatrix, Single) 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 *(
	FloatCsrSparseMatrix A,
	float s
)

Parameters

A  FloatCsrSparseMatrix
A sparse matrix.
s  Single
A scalar.

Return Value

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