Click or drag to resize

FloatMatrixSubtract(FloatMatrix, Single) Method

Subtracts a scalar from a matrix.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static FloatMatrix Subtract(
	FloatMatrix A,
	float s
)

Parameters

A  FloatMatrix
A matrix.
s  Single
A scalar.

Return Value

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