Click or drag to resize

FloatComplexCsrSparseMatrixDivide Method

Divides a sparse matrix by a scalar.

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

Parameters

A  FloatComplexCsrSparseMatrix
A sparse matrix.
s  FloatComplex
A scalar.

Return Value

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