Click or drag to resize

FloatMatrixSubtract(Single, FloatMatrix, FloatMatrix) Method

Subtracts a matrix from a scalar.

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

Parameters

s  Single
A scalar.
A  FloatMatrix
A Matrix.
B  FloatMatrix
A matrix whose contents are overwritten with the difference B[i,j] = s - A[i,j]
See Also