Click or drag to resize

FloatMatrixDivide(FloatMatrix, Single, FloatMatrix) Method

Divide a matrix by a scalar.

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

Parameters

A  FloatMatrix
A matrix.
s  Single
A scalar.
B  FloatMatrix
A matrix whose contents are overwritten by the quotient B[i,j] = A[i,j] / s.
Exceptions
ExceptionCondition
MismatchedSizeExceptionThrown if A and B do not have the same dimensions.
See Also