Click or drag to resize

DoubleComplexMatrixSubtraction(DoubleComplexMatrix, DoubleComplex) Operator

Subtracts a scalar from a matrix.

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

Parameters

A  DoubleComplexMatrix
A matrix.
s  DoubleComplex
A scalar.

Return Value

DoubleComplexMatrix
A matrix B where B[i,j] = A[i,j] - s.
See Also