Click or drag to resize

DoubleSymCsrSparseMatrixMultiply Operator

Multiply a scalar and a symmetric sparse matrix.

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

Parameters

s  Double
A scalar.
A  DoubleSymCsrSparseMatrix
A symmetric sparse matrix.

Return Value

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