Click or drag to resize

DoubleCsrSparseMatrixMultiply(DoubleCsrSparseMatrix, Double) Operator

Multiply a scalar and a sparse matrix.

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

Parameters

A  DoubleCsrSparseMatrix
A sparse matrix.
s  Double
A scalar.

Return Value

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