Click or drag to resize

FloatComplexMatrixSubtraction(FloatComplexMatrix, FloatComplex) Operator

Subtracts a scalar from a matrix.

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

Parameters

A  FloatComplexMatrix
A matrix.
s  FloatComplex
A scalar.

Return Value

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