Click or drag to resize

DoubleComplexCsrSparseMatrixDivide Method

Divides a sparse matrix by a scalar.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static DoubleComplexCsrSparseMatrix Divide(
	DoubleComplexCsrSparseMatrix A,
	DoubleComplex s
)

Parameters

A  DoubleComplexCsrSparseMatrix
A sparse matrix.
s  DoubleComplex
A scalar.

Return Value

DoubleComplexCsrSparseMatrix
A sparse matrix B where B[i,j] = A[i,j] / s.
See Also