Click or drag to resize

FloatMatrixSubtract(FloatMatrix, Single, FloatMatrix) Method

Subtracts a scalar from a matrix.

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

Parameters

A  FloatMatrix
A matrix.
s  Single
A scalar.
B  FloatMatrix
A matrix whose contents are overwritten with the difference
Exceptions
ExceptionCondition
MismatchedSizeExceptionThrown if A and B do not have the same dimensions.
See Also